$\textbf{Overview}$¶

This document provides instructions on running the JWST Science Calibration Pipeline (referred to as “the pipeline”) and individual pipeline steps specifically for $\textbf{Time Series Observation (TSO) Imaging with NIRCam NRC_TSIMAGE exposure data}$.

End-to-end calibration of JWST data is divided into 3 main stages of processing. Multiple pipeline modules are used for different stages of processing and for different JWST observing modes. The modules are broken into the following 3 stages:

  • $\textbf{Stage 1}$: Detector-level corrections and ramp fitting for individual exposures

  • $\textbf{Stage 2}$: Instrument-mode calibrations for individual exposures

  • $\textbf{Stage 3}$: Combining data from multiple exposures within an observation

$\textbf{Stage 1}$ corrections are applied nearly universally for all instruments and modes. $\textbf{Stage 2}$ is divided into separate modules for $\textbf{imaging}$ and spectroscopic modes. $\textbf{Stage 3}$ is divided into five separate modules for imaging, spectroscopic, coronagraphic, Aperture Masking Interferometry (AMI), and $\textbf{Time Series Observation (TSO)}$ modes.

$\textbf{Import Library}$¶

In [2]:
import os
#os.environ['CRDS_PATH'] = '/fenrirdata1/kg_data/crds_cache/' #These pathways should be defined in your ~./bash profile. If not, you can set them within the notebook.
#os.environ['CRDS_SERVER_URL']= 'https://jwst-crds.stsci.edu'
#os.environ['CRDS_CONTEXT']='jwst_0756.pmap' #Occasionally, the JWST CRDS pmap will be updated. Updates may break existing code. Use this command to revert to an older working verison until the issue is fixed. 


import jwst
print(jwst.__version__) #Print what version of the pipeline you are using.

from jwst.pipeline.calwebb_detector1 import Detector1Pipeline #Stage 1
from jwst.pipeline.calwebb_image2 import Image2Pipeline #Stage 2
from jwst.pipeline.calwebb_tso3 import Tso3Pipeline #Stage 3
from jwst.associations.asn_from_list import asn_from_list #Association file imports
from jwst.associations.lib.rules_level2_base import DMSLevel2bBase

#General
from astropy.io import fits, ascii
import matplotlib.pyplot as plt
%matplotlib inline
import csv
import numpy as np
import asdf
import glob
import time
import yaml
from copy import deepcopy

from tshirt.pipeline import phot_pipeline,analysis #tshirt specific imports
from splintegrate import splintegrate

#modeling
import batman
from scipy.optimize import curve_fit

#Style Choice
class style:
   BOLD = '\033[1m'
   END = '\033[0m'
1.3.1

$\textbf{Stage 1}$¶

$\textbf{Detector-level corrections and ramp fitting for individual exposures.}$¶

Stage 1 consists of detector-level corrections that are performed on a group-by-group basis, followed by ramp fitting. The output of stage 1 processing is a countrate image per exposure, or per integration for some modes.

$\textbf{Detector1Pipeline:}$¶

Apply all calibration steps to raw JWST ramps to produce a 2-D slope product. This stage takes care of basic data reduction steps, such as reference pixel correction, superbias subtraction, removal of non-linearity, and flagging of cosmic rays. In the final step in this stage of the pipeline, line-fitting is performed on each integration. A slope image is created for each integration. The steps in this stage are identical for all data.

There are two general configurations for this pipeline, depending on whether the data are to be treated as a Time Series Observation (TSO). The configuration is provided by CRDS reference file mappings and are usually set by default to always give access to the most recent reference file deliveries and selection rules. For TSO exposures, some steps are set to be skipped by default:

  • The $\textbf{ipc}$ step corrects a JWST exposure for interpixel capacitance by convolving with an IPC reference image.
  • The $\textbf{persistence}$ step. Based on a model, this step computes the number of traps that are expected to have captured or released a charge during an exposure. The released charge is proportional to the persistence signal, and this will be subtracted (group by group) from the science data.

$\textbf{INPUT FILES:}$ Exposure raw data products are designated by a file name suffix of “uncal.” These files usually contain only the raw detector pixel values from an exposure, with the addition of some table extensions containing various types of meta data associated with the exposure. Additional extensions can be included for certain instruments and readout types. Below are header modifications to the "uncal" fits files.

In [3]:
#Adding header modifications
all_uncal_files = [] # All Uncalibrated File Names. Also use to check that all files have been modified by the loop. 
BaseDirectory = '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/Raw_Data/'
for fitsName in glob.glob(BaseDirectory + '*nrca3_uncal.fits'): #Grabbing only nrca3 files from the directory
    HDUList = fits.open(fitsName, 'update')
    HDUList[0].header['NOUTPUTS'] = (4, 'Number of output amplifiers') #This was not input at the time of the simulation. Therefore, we manually must input this information. 
    HDUList.close()
    all_uncal_files.append(fitsName)
    
all_uncal_files = sorted(all_uncal_files) #sort files alphabetically. 
In [4]:
seg01_len = len(glob.glob('/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/ROEBA/splintegrate/jw01185002001_01101_00001-seg001*.fits'))
In [ ]:
startTime = time.time() #Time how long this step takes

for filename_stage1 in all_uncal_files:
    
    # Instantiate the class. Do not provide a configuration file.
    pipeline_stage1 = Detector1Pipeline()
    
    # Manually set any desired non-default parameter values
    
    # Default is to skip the persistence and IPC correction
    # Make that explicit here
    pipeline_stage1.persistence.skip = True
    pipeline_stage1.ipc.skip = True
    
    pipeline_stage1.refpix.skip = False # Make sure to skip steps appropriate if using an alternate ref pix correction method. Otherwise, the default is 'False'.
    pipeline_stage1.superbias.skip = False 
    
    # The default value for CR flagging is 3 or 4 sigma
    # which tends to be too aggressive and flags noise.
    # Set it to something more reasonable
    #pipeline_stage1.jump.rejection_threshold = 9
    pipeline_stage1.jump.skip=True # Currently we are skipping this step as we are testing the pipeline with this simulation and lots of the data gets flagged. 
    
    # Specify that you want results saved to a file
    pipeline_stage1.save_results = True
    pipeline_stage1.output_dir = '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/'
    
    # Execute the pipeline using the run method
    result_stage1 = pipeline_stage1.run(filename_stage1)
    
executionTime = (time.time() - startTime)
print('Stage 1 Execution Time in Seconds: ' + str(executionTime)) #Time how long this step takes
2021-11-07 23:49:56,593 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created.
2021-11-07 23:49:56,598 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created.
2021-11-07 23:49:56,603 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created.
2021-11-07 23:49:56,607 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created.
2021-11-07 23:49:56,615 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created.
2021-11-07 23:49:56,619 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created.
2021-11-07 23:49:56,625 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created.
2021-11-07 23:49:56,630 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created.
2021-11-07 23:49:56,634 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created.
2021-11-07 23:49:56,639 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created.
2021-11-07 23:49:56,644 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created.
2021-11-07 23:49:56,649 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created.
2021-11-07 23:49:56,654 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created.
2021-11-07 23:49:56,660 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created.
2021-11-07 23:49:56,666 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created.
2021-11-07 23:49:56,672 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created.
2021-11-07 23:49:56,681 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created.
2021-11-07 23:49:56,858 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/Raw_Data/jw01185002001_01101_00001-seg001_nrca3_uncal.fits',).
2021-11-07 23:49:56,883 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}}}
2021-11-07 23:50:02,931 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'jw01185002001_01101_00001-seg001_nrca3_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias']
2021-11-07 23:50:05,827 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_dark_0262.fits'.
2021-11-07 23:50:05,829 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0048.fits'.
2021-11-07 23:50:05,830 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_linearity_0053.fits'.
2021-11-07 23:50:05,832 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_mask_0041.fits'.
2021-11-07 23:50:05,835 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0030.fits'.
2021-11-07 23:50:05,837 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2021-11-07 23:50:05,838 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2021-11-07 23:50:05,840 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2021-11-07 23:50:05,841 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_saturation_0067.fits'.
2021-11-07 23:50:05,843 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_superbias_0027.fits'.
2021-11-07 23:50:05,846 - stpipe.Detector1Pipeline - INFO - Starting calwebb_detector1 ...
2021-11-07 23:50:10,058 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(212, 6, 256, 2048) from jw01185002001_01101_00001-seg001_nrca3_uncal.fits>,).
2021-11-07 23:50:10,062 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/Raw_Data'}
2021-11-07 23:50:13,016 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES=2 is a power of 2; correction not needed
2021-11-07 23:50:13,019 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped
2021-11-07 23:50:13,021 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done
2021-11-07 23:50:13,212 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(212, 6, 256, 2048) from jw01185002001_01101_00001-seg001_nrca3_uncal.fits>,).
2021-11-07 23:50:13,216 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/Raw_Data'}
2021-11-07 23:50:13,263 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_mask_0041.fits
2021-11-07 23:50:17,368 - stpipe.Detector1Pipeline.dq_init - INFO - Extracting mask subarray to match science data
2021-11-07 23:50:17,384 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done
2021-11-07 23:50:17,567 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(212, 6, 256, 2048) from jw01185002001_01101_00001-seg001_nrca3_uncal.fits>,).
2021-11-07 23:50:17,570 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/Raw_Data'}
2021-11-07 23:50:17,615 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_saturation_0067.fits
2021-11-07 23:50:17,975 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored
2021-11-07 23:50:17,977 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored
2021-11-07 23:50:17,978 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored
2021-11-07 23:50:17,980 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored
2021-11-07 23:50:17,981 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored
2021-11-07 23:50:20,899 - stpipe.Detector1Pipeline.saturation - INFO - Extracting reference file subarray to match science data
2021-11-07 23:50:27,911 - stpipe.Detector1Pipeline.saturation - INFO - Detected 10479 saturated pixels
2021-11-07 23:50:28,459 - stpipe.Detector1Pipeline.saturation - INFO - Detected 0 A/D floor pixels
2021-11-07 23:50:28,465 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation done
2021-11-07 23:50:28,646 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc running with args (<RampModel(212, 6, 256, 2048) from jw01185002001_01101_00001-seg001_nrca3_uncal.fits>,).
2021-11-07 23:50:28,649 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/Raw_Data'}
2021-11-07 23:50:28,650 - stpipe.Detector1Pipeline.ipc - INFO - Step skipped.
2021-11-07 23:50:28,652 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc done
2021-11-07 23:50:28,803 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias running with args (<RampModel(212, 6, 256, 2048) from jw01185002001_01101_00001-seg001_nrca3_uncal.fits>,).
2021-11-07 23:50:28,805 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/Raw_Data'}
2021-11-07 23:50:28,851 - stpipe.Detector1Pipeline.superbias - INFO - Using SUPERBIAS reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_superbias_0027.fits
2021-11-07 23:50:29,361 - stpipe.Detector1Pipeline.superbias - WARNING - Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored
2021-11-07 23:50:33,759 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias done
2021-11-07 23:50:33,943 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix running with args (<RampModel(212, 6, 256, 2048) from jw01185002001_01101_00001-seg001_nrca3_uncal.fits>,).
2021-11-07 23:50:33,945 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/Raw_Data', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}
2021-11-07 23:50:33,968 - stpipe.Detector1Pipeline.refpix - INFO - use_side_ref_pixels = True
2021-11-07 23:50:33,969 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_columns = True
2021-11-07 23:50:33,970 - stpipe.Detector1Pipeline.refpix - INFO - side_smoothing_length = 11
2021-11-07 23:50:33,973 - stpipe.Detector1Pipeline.refpix - INFO - side_gain = 1.000000
2021-11-07 23:50:33,974 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_rows = True

$\textbf{OUTPUT FILES:}$ Output files are *rateints.fits. The pipeline creates a rate.fits and a rateint.fits files in cases where there is more than one integration in a file, but only a rate.fits file in the case where there is only one integration in a file.

In [5]:
all_rateints_files = [] # All Rateints File Names. Also used to check that all the rateints file exist.  
BaseDirectory = '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/'
for fitsName in glob.glob(BaseDirectory + '*nrca3_rateints.fits'): #Grabbing only nrca3 files from the directory
    all_rateints_files.append(fitsName)

$\textbf{Confirming a Source}$¶

Plotting one of the rateints.fits files to check that a target source is present before moving on to stage 2 and stage 3.

In [6]:
#A check to ensure the star is in the file
file = '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg002_nrca3_rateints.fits' #random file from the rateints list
HDUList = fits.open(file)
#HDUList.info()

image2D = HDUList[1].data[0]
image2D.shape

fig, ax = plt.subplots(figsize=(22,5))
ax.imshow(image2D, vmin=0, vmax=500)
#ax.plot(image2D[32,:])
#ax.set_xlim(900,1000)
Out[6]:
<matplotlib.image.AxesImage at 0x7f80e3bda520>

$\textbf{Split the Integrations for tshirt (referenced later)}$¶

In [14]:
#splitegrate
#Splintegrate splits and combines integrations from the pipeline up.
#Set flipToDet = False to not flip the x-axis
#This is a step required if running tshirt

#This simulation has multiple segments that need to be split for tshirt purposes.
BaseDirectory = '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/'
for rateints_segment in glob.glob(BaseDirectory + '*nrca3_rateints.fits'): #Grabbing only nrca3 files from the directory
    outDir = '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/splintegrate/'
    splint = splintegrate.splint(inFile=rateints_segment,outDir=outDir,flipToDet=False)
    splint.split()
100%|█████████████████████████████████████████| 212/212 [00:04<00:00, 52.94it/s]
100%|█████████████████████████████████████████| 212/212 [00:03<00:00, 55.05it/s]
100%|█████████████████████████████████████████| 212/212 [00:03<00:00, 55.29it/s]
100%|█████████████████████████████████████████| 212/212 [00:03<00:00, 55.05it/s]
100%|█████████████████████████████████████████| 212/212 [00:03<00:00, 54.55it/s]
100%|█████████████████████████████████████████| 167/167 [00:03<00:00, 55.13it/s]

$\textbf{Association Files}$¶

$\textbf{Organizing the Detector1Pipeline Output Files}$¶

Associations are basically just lists of things, mostly exposures, that are somehow related. An association file is a JSON-format file that contains a list of all the files with the same instrument set-up (filter, observation mode, etc) that might be combined into a single image. Relationships between multiple exposures are captured in an association, which is a means of identifying a set of exposures that belong together and may be dependent upon one another. The association concept permits exposures to be calibrated, archived, retrieved, and reprocessed as a set rather than as individual objects.

In [7]:
asn_dir = '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/' #Name the association file's directory. 
level2_asn = (os.path.join(asn_dir, 'nrca3_level2_asn.json')) #Name the stage 2 association file and give it a path. 
asn_stage2 = asn_from_list(all_rateints_files,rule=DMSLevel2bBase) #The rateints files; DMSLevel2bBase indicates that a Level2 association is to be created.
with open(level2_asn, 'w') as fh: #Write an association file. 
   fh.write(asn_stage2.dump()[1])

$\textbf{Stage 2}$¶

$\textbf{Processes JWST imaging-mode slope data from Level-2a to Level-2b.}$¶

Stage 2 processing consists of additional instrument-level and observing-mode corrections and calibrations to produce fully calibrated exposures. The details differ for imaging and spectroscopic exposures, and there are some corrections that are unique to certain instruments or modes.

$\textbf{Image2Pipeline:}$¶

Imaging processing applies additional instrumental corrections and calibrations that result in a fully calibrated individual exposure. Imaging TSO data are run through this pipeline. The steps are very similar to those in Spec2Pipeline. WCS information is added, flat fielding and flux calibration are performed, and astrometric distortion is removed from the images. There are two parameter references used to control this pipeline, depending on whether the data are to be treated as Time Series Observation (TSO). The parameter reference is provided by CRDS. For TSO exposures, some steps are set to be skipped by default.

$\textbf{INPUT FILES:}$ The input to Image2Pipeline is a countrate exposure, in the form of either “_rate” or “_rateints” data. A single input file can be processed or an ASN file listing multiple inputs can be used, in which case the processing steps will be applied to each input exposure, one at a time. If “_rateints” products are used as input, each step applies its algorithm to each integration in the exposure, where appropriate.

In [16]:
#The file to use is the stage 2 association file defined above. 

# Instantiate the class. Do not provide a configuration file.
pipeline_stage2 = Image2Pipeline()

# Specify that you want results saved to a file
pipeline_stage2.save_results = True
pipeline_stage2.output_dir = '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/'

# Execute the pipeline using the run method
result_stage2 = pipeline_stage2.run(level2_asn)
2021-11-08 15:17:51,522 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2021-11-08 15:17:51,527 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2021-11-08 15:17:51,535 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2021-11-08 15:17:51,540 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2021-11-08 15:17:51,546 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2021-11-08 15:17:51,552 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2021-11-08 15:17:51,868 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/nrca3_level2_asn.json',).
2021-11-08 15:17:51,879 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}}
2021-11-08 15:17:53,409 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw01185002001_01101_00001-seg001_nrca3_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg']
2021-11-08 15:17:53,419 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0031.fits'.
2021-11-08 15:17:53,421 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2021-11-08 15:17:53,422 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2021-11-08 15:17:53,424 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2021-11-08 15:17:53,425 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2021-11-08 15:17:53,427 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_distortion_0089.asdf'.
2021-11-08 15:17:53,432 - stpipe.Image2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_drizpars_0001.fits'.
2021-11-08 15:17:53,434 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2021-11-08 15:17:53,435 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_filteroffset_0004.asdf'.
2021-11-08 15:17:53,438 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_flat_0298.fits'.
2021-11-08 15:17:53,441 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2021-11-08 15:17:53,442 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2021-11-08 15:17:53,444 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2021-11-08 15:17:53,446 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2021-11-08 15:17:53,447 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2021-11-08 15:17:53,448 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2021-11-08 15:17:53,449 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2021-11-08 15:17:53,450 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0093.fits'.
2021-11-08 15:17:53,454 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2021-11-08 15:17:53,455 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2021-11-08 15:17:53,456 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2021-11-08 15:17:53,458 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2021-11-08 15:17:53,462 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'.
2021-11-08 15:17:53,464 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2021-11-08 15:17:53,482 - stpipe.Image2Pipeline - INFO - Processing product /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg001_nrca3
2021-11-08 15:17:53,483 - stpipe.Image2Pipeline - INFO - Working on input /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg001_nrca3_rateints.fits ...
2021-11-08 15:17:55,392 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg001_nrca3_rateints.fits>,).
2021-11-08 15:17:55,396 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
2021-11-08 15:17:57,353 - stpipe.Image2Pipeline.assign_wcs - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/gwcs/utils.py:72: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  indx = np.asarray(np.floor(np.asarray(value) + 0.5), dtype=np.int)

2021-11-08 15:17:57,372 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS  303.167993587 -2.153610501 303.170148795 -2.152952750 303.164948000 -2.135825260 303.162770767 -2.136454088
2021-11-08 15:17:57,374 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.167993587 -2.153610501 303.170148795 -2.152952750 303.164948000 -2.135825260 303.162770767 -2.136454088
2021-11-08 15:17:57,375 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2021-11-08 15:17:57,524 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2021-11-08 15:17:57,796 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg001_nrca3_rateints.fits>,).
2021-11-08 15:17:57,799 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
2021-11-08 15:17:59,576 - stpipe.Image2Pipeline.flat_field - INFO - Extracting matching subarray from flat
2021-11-08 15:18:03,128 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2021-11-08 15:18:03,341 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg001_nrca3_rateints.fits>,).
2021-11-08 15:18:03,344 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'inverse': False, 'source_type': None}
2021-11-08 15:18:03,415 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0093.fits
2021-11-08 15:18:03,416 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0031.fits
2021-11-08 15:18:05,321 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM
2021-11-08 15:18:05,322 - stpipe.Image2Pipeline.photom - INFO -  detector: NRCA3
2021-11-08 15:18:05,324 - stpipe.Image2Pipeline.photom - INFO -  exp_type: NRC_TSIMAGE
2021-11-08 15:18:05,325 - stpipe.Image2Pipeline.photom - INFO -  filter: WLP4
2021-11-08 15:18:05,326 - stpipe.Image2Pipeline.photom - INFO -  pupil: CLEAR
2021-11-08 15:18:05,656 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2021-11-08 15:18:05,661 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 18.6497
2021-11-08 15:18:06,824 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2021-11-08 15:18:06,828 - stpipe.Image2Pipeline - INFO - Finished processing product /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg001_nrca3
2021-11-08 15:18:06,830 - stpipe.Image2Pipeline - INFO - Processing product /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg002_nrca3
2021-11-08 15:18:06,831 - stpipe.Image2Pipeline - INFO - Working on input /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg002_nrca3_rateints.fits ...
2021-11-08 15:18:08,709 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg002_nrca3_rateints.fits>,).
2021-11-08 15:18:08,713 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
2021-11-08 15:18:10,268 - stpipe.Image2Pipeline.assign_wcs - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/gwcs/utils.py:72: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  indx = np.asarray(np.floor(np.asarray(value) + 0.5), dtype=np.int)

2021-11-08 15:18:10,279 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS  303.167993587 -2.153610501 303.170148795 -2.152952750 303.164948000 -2.135825260 303.162770767 -2.136454088
2021-11-08 15:18:10,280 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.167993587 -2.153610501 303.170148795 -2.152952750 303.164948000 -2.135825260 303.162770767 -2.136454088
2021-11-08 15:18:10,281 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2021-11-08 15:18:10,386 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2021-11-08 15:18:10,568 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg002_nrca3_rateints.fits>,).
2021-11-08 15:18:10,571 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
2021-11-08 15:18:12,376 - stpipe.Image2Pipeline.flat_field - INFO - Extracting matching subarray from flat
2021-11-08 15:18:16,007 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2021-11-08 15:18:16,194 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg002_nrca3_rateints.fits>,).
2021-11-08 15:18:16,196 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'inverse': False, 'source_type': None}
2021-11-08 15:18:16,261 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0093.fits
2021-11-08 15:18:16,262 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0031.fits
2021-11-08 15:18:17,707 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM
2021-11-08 15:18:17,710 - stpipe.Image2Pipeline.photom - INFO -  detector: NRCA3
2021-11-08 15:18:17,712 - stpipe.Image2Pipeline.photom - INFO -  exp_type: NRC_TSIMAGE
2021-11-08 15:18:17,713 - stpipe.Image2Pipeline.photom - INFO -  filter: WLP4
2021-11-08 15:18:17,714 - stpipe.Image2Pipeline.photom - INFO -  pupil: CLEAR
2021-11-08 15:18:17,782 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2021-11-08 15:18:17,786 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 18.6497
2021-11-08 15:18:18,849 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2021-11-08 15:18:18,851 - stpipe.Image2Pipeline - INFO - Finished processing product /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg002_nrca3
2021-11-08 15:18:18,853 - stpipe.Image2Pipeline - INFO - Processing product /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg003_nrca3
2021-11-08 15:18:18,854 - stpipe.Image2Pipeline - INFO - Working on input /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg003_nrca3_rateints.fits ...
2021-11-08 15:18:20,733 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg003_nrca3_rateints.fits>,).
2021-11-08 15:18:20,736 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
2021-11-08 15:18:22,676 - stpipe.Image2Pipeline.assign_wcs - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/gwcs/utils.py:72: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  indx = np.asarray(np.floor(np.asarray(value) + 0.5), dtype=np.int)

2021-11-08 15:18:22,691 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS  303.167993587 -2.153610501 303.170148795 -2.152952750 303.164948000 -2.135825260 303.162770767 -2.136454088
2021-11-08 15:18:22,693 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.167993587 -2.153610501 303.170148795 -2.152952750 303.164948000 -2.135825260 303.162770767 -2.136454088
2021-11-08 15:18:22,694 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2021-11-08 15:18:22,796 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2021-11-08 15:18:23,086 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg003_nrca3_rateints.fits>,).
2021-11-08 15:18:23,089 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
2021-11-08 15:18:24,521 - stpipe.Image2Pipeline.flat_field - INFO - Extracting matching subarray from flat
2021-11-08 15:18:27,677 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2021-11-08 15:18:28,048 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg003_nrca3_rateints.fits>,).
2021-11-08 15:18:28,051 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'inverse': False, 'source_type': None}
2021-11-08 15:18:28,115 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0093.fits
2021-11-08 15:18:28,116 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0031.fits
2021-11-08 15:18:29,429 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM
2021-11-08 15:18:29,430 - stpipe.Image2Pipeline.photom - INFO -  detector: NRCA3
2021-11-08 15:18:29,431 - stpipe.Image2Pipeline.photom - INFO -  exp_type: NRC_TSIMAGE
2021-11-08 15:18:29,433 - stpipe.Image2Pipeline.photom - INFO -  filter: WLP4
2021-11-08 15:18:29,434 - stpipe.Image2Pipeline.photom - INFO -  pupil: CLEAR
2021-11-08 15:18:29,499 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2021-11-08 15:18:29,502 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 18.6497
2021-11-08 15:18:30,544 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2021-11-08 15:18:30,545 - stpipe.Image2Pipeline - INFO - Finished processing product /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg003_nrca3
2021-11-08 15:18:30,547 - stpipe.Image2Pipeline - INFO - Processing product /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg004_nrca3
2021-11-08 15:18:30,548 - stpipe.Image2Pipeline - INFO - Working on input /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg004_nrca3_rateints.fits ...
2021-11-08 15:18:32,259 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg004_nrca3_rateints.fits>,).
2021-11-08 15:18:32,262 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
2021-11-08 15:18:33,822 - stpipe.Image2Pipeline.assign_wcs - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/gwcs/utils.py:72: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  indx = np.asarray(np.floor(np.asarray(value) + 0.5), dtype=np.int)

2021-11-08 15:18:33,836 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS  303.167993587 -2.153610501 303.170148795 -2.152952750 303.164948000 -2.135825260 303.162770767 -2.136454088
2021-11-08 15:18:33,837 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.167993587 -2.153610501 303.170148795 -2.152952750 303.164948000 -2.135825260 303.162770767 -2.136454088
2021-11-08 15:18:33,838 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2021-11-08 15:18:33,942 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2021-11-08 15:18:34,162 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg004_nrca3_rateints.fits>,).
2021-11-08 15:18:34,165 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
2021-11-08 15:18:35,591 - stpipe.Image2Pipeline.flat_field - INFO - Extracting matching subarray from flat
2021-11-08 15:18:38,707 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2021-11-08 15:18:38,887 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg004_nrca3_rateints.fits>,).
2021-11-08 15:18:38,889 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'inverse': False, 'source_type': None}
2021-11-08 15:18:38,953 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0093.fits
2021-11-08 15:18:38,954 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0031.fits
2021-11-08 15:18:40,267 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM
2021-11-08 15:18:40,268 - stpipe.Image2Pipeline.photom - INFO -  detector: NRCA3
2021-11-08 15:18:40,269 - stpipe.Image2Pipeline.photom - INFO -  exp_type: NRC_TSIMAGE
2021-11-08 15:18:40,270 - stpipe.Image2Pipeline.photom - INFO -  filter: WLP4
2021-11-08 15:18:40,272 - stpipe.Image2Pipeline.photom - INFO -  pupil: CLEAR
2021-11-08 15:18:40,342 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2021-11-08 15:18:40,345 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 18.6497
2021-11-08 15:18:41,399 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2021-11-08 15:18:41,400 - stpipe.Image2Pipeline - INFO - Finished processing product /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg004_nrca3
2021-11-08 15:18:41,402 - stpipe.Image2Pipeline - INFO - Processing product /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg005_nrca3
2021-11-08 15:18:41,404 - stpipe.Image2Pipeline - INFO - Working on input /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg005_nrca3_rateints.fits ...
2021-11-08 15:18:43,203 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg005_nrca3_rateints.fits>,).
2021-11-08 15:18:43,207 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
2021-11-08 15:18:44,774 - stpipe.Image2Pipeline.assign_wcs - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/gwcs/utils.py:72: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  indx = np.asarray(np.floor(np.asarray(value) + 0.5), dtype=np.int)

2021-11-08 15:18:44,784 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS  303.167993587 -2.153610501 303.170148795 -2.152952750 303.164948000 -2.135825260 303.162770767 -2.136454088
2021-11-08 15:18:44,786 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.167993587 -2.153610501 303.170148795 -2.152952750 303.164948000 -2.135825260 303.162770767 -2.136454088
2021-11-08 15:18:44,787 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2021-11-08 15:18:44,886 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2021-11-08 15:18:45,067 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg005_nrca3_rateints.fits>,).
2021-11-08 15:18:45,070 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
2021-11-08 15:18:46,490 - stpipe.Image2Pipeline.flat_field - INFO - Extracting matching subarray from flat
2021-11-08 15:18:49,656 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2021-11-08 15:18:49,836 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg005_nrca3_rateints.fits>,).
2021-11-08 15:18:49,839 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'inverse': False, 'source_type': None}
2021-11-08 15:18:49,907 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0093.fits
2021-11-08 15:18:49,908 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0031.fits
2021-11-08 15:18:51,257 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM
2021-11-08 15:18:51,258 - stpipe.Image2Pipeline.photom - INFO -  detector: NRCA3
2021-11-08 15:18:51,260 - stpipe.Image2Pipeline.photom - INFO -  exp_type: NRC_TSIMAGE
2021-11-08 15:18:51,261 - stpipe.Image2Pipeline.photom - INFO -  filter: WLP4
2021-11-08 15:18:51,262 - stpipe.Image2Pipeline.photom - INFO -  pupil: CLEAR
2021-11-08 15:18:51,326 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2021-11-08 15:18:51,329 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 18.6497
2021-11-08 15:18:52,383 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2021-11-08 15:18:52,385 - stpipe.Image2Pipeline - INFO - Finished processing product /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg005_nrca3
2021-11-08 15:18:52,387 - stpipe.Image2Pipeline - INFO - Processing product /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg006_nrca3
2021-11-08 15:18:52,388 - stpipe.Image2Pipeline - INFO - Working on input /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg006_nrca3_rateints.fits ...
2021-11-08 15:18:53,803 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(167, 256, 2048) from jw01185002001_01101_00001-seg006_nrca3_rateints.fits>,).
2021-11-08 15:18:53,806 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
2021-11-08 15:18:55,137 - stpipe.Image2Pipeline.assign_wcs - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/gwcs/utils.py:72: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  indx = np.asarray(np.floor(np.asarray(value) + 0.5), dtype=np.int)

2021-11-08 15:18:55,147 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS  303.167993587 -2.153610501 303.170148795 -2.152952750 303.164948000 -2.135825260 303.162770767 -2.136454088
2021-11-08 15:18:55,148 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.167993587 -2.153610501 303.170148795 -2.152952750 303.164948000 -2.135825260 303.162770767 -2.136454088
2021-11-08 15:18:55,149 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2021-11-08 15:18:55,249 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2021-11-08 15:18:55,430 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(167, 256, 2048) from jw01185002001_01101_00001-seg006_nrca3_rateints.fits>,).
2021-11-08 15:18:55,433 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
2021-11-08 15:18:56,643 - stpipe.Image2Pipeline.flat_field - INFO - Extracting matching subarray from flat
2021-11-08 15:18:59,134 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2021-11-08 15:18:59,314 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(167, 256, 2048) from jw01185002001_01101_00001-seg006_nrca3_rateints.fits>,).
2021-11-08 15:18:59,317 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'inverse': False, 'source_type': None}
2021-11-08 15:18:59,381 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0093.fits
2021-11-08 15:18:59,383 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0031.fits
2021-11-08 15:19:00,448 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM
2021-11-08 15:19:00,449 - stpipe.Image2Pipeline.photom - INFO -  detector: NRCA3
2021-11-08 15:19:00,450 - stpipe.Image2Pipeline.photom - INFO -  exp_type: NRC_TSIMAGE
2021-11-08 15:19:00,451 - stpipe.Image2Pipeline.photom - INFO -  filter: WLP4
2021-11-08 15:19:00,454 - stpipe.Image2Pipeline.photom - INFO -  pupil: CLEAR
2021-11-08 15:19:00,516 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2021-11-08 15:19:00,519 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 18.6497
2021-11-08 15:19:01,347 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2021-11-08 15:19:01,349 - stpipe.Image2Pipeline - INFO - Finished processing product /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg006_nrca3
2021-11-08 15:19:01,351 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2021-11-08 15:19:04,671 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg001_nrca3_calints.fits
2021-11-08 15:19:08,501 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg002_nrca3_calints.fits
2021-11-08 15:19:11,456 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg003_nrca3_calints.fits
2021-11-08 15:19:14,438 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg004_nrca3_calints.fits
2021-11-08 15:19:17,560 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg005_nrca3_calints.fits
2021-11-08 15:19:20,066 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/jw01185002001_01101_00001-seg006_nrca3_calints.fits
2021-11-08 15:19:20,067 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done

$\textbf{OUTPUT FILES:}$ The output is a fully calibrated, but unrectified, exposure, using the product type suffix “_cal” or “_calints”, depending on the type of input.

In [8]:
all_calints_files = [] # All Calibrated Data File Names. Also used to check that all the calints files exist.  
BaseDirectory = '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/'
for fitsName in glob.glob(BaseDirectory + '*nrca3_calints.fits'): #Grabbing only nrca3 files from the directory
    HDUList = fits.open(fitsName, 'update')
    HDUList[1].header['XREF_SCI'] = (1056.75, 'Aperture X reference point in SCI frame') #Fix x-position centering
    HDUList[1].header['YREF_SCI'] = (167.5, 'Aperture Y reference point in SCI frame') #Fix the y-position centering
    HDUList.close()
    all_calints_files.append(fitsName)
all_calints_files = sorted(all_calints_files) #sort files alphabetically. 
In [9]:
#Generate an association file required for stage 3
asn_dir = '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/' #Name the association file's directory. 
level3_asn = (os.path.join(asn_dir, 'nrca3_level3_asn.json')) #Name the stage 3 association file and give it a path.
asn_stage3 = asn_from_list(all_calints_files, product_name ='WASP80b_WLP4_nrca3_level3_asn') #The rateints files; Name the output..
with open(level3_asn, 'w') as fh: #Write an association file. 
   fh.write(asn_stage3.dump()[1])

$\textbf{Stage 3}$¶

$\textbf{Applies level 3 processing to TSO-mode data from}$¶

Stage 3 processing consists of routines that work with multiple exposures and in most cases produce some kind of combined product. There are unique pipeline modules for stage 3 processing of imaging, spectroscopic, coronagraphic, AMI, and TSO observations.

$\textbf{Tso3Pipeline:}$¶

The Stage 3 TSO pipeline is to be applied to associations of calibrated TSO exposures (e.g. NIRCam TS imaging, NIRCam TS grism, NIRISS SOSS, NIRSpec BrightObj, MIRI LRS Slitless) and is used to produce calibrated time-series photometry or spectra of the source object. This is a pipeline customized for TSO data. Grism TSO data undergo outlier detection (essentially a check for any cosmic rays/transient effects that were missed in Detector1Pipeline), background subtraction, spectral extraction, and photometry. Imaging TSO data are run through outlier detection, and photometry is performed.

The logic that decides whether to apply the imaging or spectroscopy steps is based on the EXP_TYPE and TSOVISIT keyword values of the input data. Imaging steps are applied if either of the following is true:

  • EXP_TYPE = ‘NRC_TSIMAGE’

  • EXP_TYPE = ‘MIR_IMAGE’ and TSOVISIT = True

$\textbf{INPUT FILES:}$ The spectroscopy steps will be applied in all other cases. The input to calwebb_tso3 is in the form of an ASN file that lists multiple exposures or exposure segments of a science target. The individual inputs should be in the form of 3D calibrated (“_calints”) products from either calwebb_image2 or calwebb_spec2 processing.

In [16]:
#The file to use is the stage 3 association file defined above. 

# Instantiate the class. Do not provide a configuration file.
pipeline_stage3 = Tso3Pipeline()

pipeline_stage3.outlier_detection.skip = True

# Specify that you want results saved to a file
pipeline_stage3.save_results = True
pipeline_stage3.output_dir = '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/'

# Execute the pipeline using the run method
result_stage3 = pipeline_stage3.run(level3_asn)
2021-11-08 22:38:22,909 - stpipe.Tso3Pipeline - INFO - Tso3Pipeline instance created.
2021-11-08 22:38:22,916 - stpipe.Tso3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created.
2021-11-08 22:38:22,922 - stpipe.Tso3Pipeline.tso_photometry - INFO - TSOPhotometryStep instance created.
2021-11-08 22:38:22,928 - stpipe.Tso3Pipeline.extract_1d - INFO - Extract1dStep instance created.
2021-11-08 22:38:22,933 - stpipe.Tso3Pipeline.white_light - INFO - WhiteLightStep instance created.
2021-11-08 22:38:23,103 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline running with args ('/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/nrca3_level3_asn.json',).
2021-11-08 22:38:23,113 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '', 'min_wavelength': None, 'max_wavelength': None}}}
2021-11-08 22:38:26,201 - stpipe.Tso3Pipeline - INFO - Prefetching reference files for dataset: 'jw01185002001_01101_00001-seg001_nrca3_calints.fits' reftypes = ['gain', 'readnoise']
2021-11-08 22:38:28,447 - stpipe.Tso3Pipeline - INFO - Prefetch for GAIN reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0048.fits'.
2021-11-08 22:38:28,449 - stpipe.Tso3Pipeline - INFO - Prefetch for READNOISE reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0030.fits'.
2021-11-08 22:38:28,452 - stpipe.Tso3Pipeline - INFO - Starting calwebb_tso3...
2021-11-08 22:39:12,450 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 22:39:12,713 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 22:39:12,717 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 22:39:12,719 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 22:39:12,817 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 22:39:29,988 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 22:39:30,314 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 22:39:30,319 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 22:39:30,320 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 22:39:30,424 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 22:39:51,220 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 22:39:51,589 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 22:39:51,593 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 22:39:51,595 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 22:39:51,710 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 22:40:12,541 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 22:40:12,921 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 22:40:12,926 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 22:40:12,927 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 22:40:13,048 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 22:40:33,817 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 22:40:34,209 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 22:40:34,215 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 22:40:34,216 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 22:40:34,337 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 22:40:50,690 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 22:40:50,984 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 22:40:50,988 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 22:40:50,990 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 22:40:51,075 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 22:40:51,709 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg001_nrca3_calints.fits>,).
2021-11-08 22:40:51,712 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_catalog': False}
2021-11-08 22:40:52,925 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 22:40:53,109 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg002_nrca3_calints.fits>,).
2021-11-08 22:40:53,112 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_catalog': False}
2021-11-08 22:40:54,342 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 22:40:54,509 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg003_nrca3_calints.fits>,).
2021-11-08 22:40:54,512 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_catalog': False}
2021-11-08 22:40:55,763 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 22:40:55,934 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg004_nrca3_calints.fits>,).
2021-11-08 22:40:55,937 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_catalog': False}
2021-11-08 22:40:57,293 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 22:40:57,462 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg005_nrca3_calints.fits>,).
2021-11-08 22:40:57,466 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_catalog': False}
2021-11-08 22:40:58,737 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 22:40:58,905 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(167, 256, 2048) from jw01185002001_01101_00001-seg006_nrca3_calints.fits>,).
2021-11-08 22:40:58,908 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_catalog': False}
2021-11-08 22:40:59,959 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 22:40:59,971 - stpipe.Tso3Pipeline - INFO - Writing Level 3 photometry catalog /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/WASP80b_WLP4_nrca3_level3_asn_phot.ecsv
2021-11-08 22:41:00,096 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline done

$\textbf{OUTPUT FILES:}$ For imaging TS observations, the tso_photometry step produces a source catalog containing photometry results from all of the “_crfints” products, organized as a function of integration time stamps. This file is saved in ASCII “ecsv” format, with a product type of “_phot.” The file naming is source-based, using the output product name specified in the ASN file.

$\textbf{Plotting Results: Unaltered}$¶

Initial pipeline results without altering the aperture sizes. In this particular simulation, there is an edge effect (the observation is cut off on the top and bottom). We want to see how observations that turn out this way in real life can effect the results the pipline returns.

TSOPHOT reference files are ASDF format. An object called ‘radii’ in a TSOPHOT file defines the radii that the step needs. This object is a list of one or more dictionaries. Each such dictionary has four keys: ‘pupil’, ‘radius’, ‘radius_inner’, and ‘radius_outer’. The particular one of these dictionaries to use is selected by comparing meta.instrument.pupil with the value corresponding to ‘pupil’ in each dictionary. If an exact match is found, that dictionary will be used. If no match is found, the first dictionary with ‘pupil’: ‘ANY’ will be selected. The radii will be taken from the values of keys ‘radius’, ‘radius_inner’, and ‘radius_outer’.

The original radii parameters are:

radii': [{'pupil': 'WLP8', 'radius': 50.0, 'radius_inner': 60.0, 'radius_outer': 70.0}, {'pupil': 'ANY', 'radius': 3.0, 'radius_inner': 4.0, 'radius_outer': 5.0}]}

In [10]:
#Print the stage 3 result file with all the data
with open('/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/WASP80b_WLP4_nrca3_level3_asn_phot.ecsv', 'r') as file:
    reader = csv.reader(file)
    for row in reader:
        print(row)
['# %ECSV 0.9']
['# ---']
['# datatype:']
['# - {name: MJD', ' datatype: float64}']
['# - {name: aperture_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_sum_err', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_sum_err', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_mean', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_mean_err', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_bkg', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_bkg_err', ' unit: Jy', ' datatype: float64}']
['# - {name: net_aperture_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: net_aperture_sum_err', ' unit: Jy', ' datatype: float64}']
['# meta: !!omap']
['# - {instrument: NIRCAM}']
['# - {detector: NRCA3}']
['# - {channel: SHORT}']
['# - {subarray: SUBGRISM256}']
['# - {filter: WLP4}']
['# - {pupil: CLEAR}']
['# - {target_name: UNKNOWN}']
['# - {xcenter: 1055.75}']
['# - {ycenter: 166.5}']
['# - ra_icrs: !numpy.ndarray']
['#     buffer: !!binary |']
['#       N3hKNXpxcnlja0E9']
['#     dtype: float64']
['#     order: C']
['#     shape: !!python/tuple []']
['# - dec_icrs: !numpy.ndarray']
['#     buffer: !!binary |']
['#       OGpMa01hd25BY0E9']
['#     dtype: float64']
['#     order: C']
['#     shape: !!python/tuple []']
['# - {apertures: Photometry measured in a circular aperture of r=3.0 pixels.  Background calculated as the mean in a circular annulus with']
['#     r_inner=4.0 pixels and r_outer=5.0 pixels.}']
['# - {number_of_integrations: 1227}']
['# - __serialized_columns__:']
['#     annulus_mean:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: &id001 !astropy.units.Unit {unit: Jy}']
['#       value: !astropy.table.SerializedColumn {name: annulus_mean}']
['#     annulus_mean_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_mean_err}']
['#     annulus_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_sum}']
['#     annulus_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_sum_err}']
['#     aperture_bkg:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_bkg}']
['#     aperture_bkg_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_bkg_err}']
['#     aperture_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_sum}']
['#     aperture_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_sum_err}']
['#     net_aperture_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: net_aperture_sum}']
['#     net_aperture_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: net_aperture_sum_err}']
['# schema: astropy-2.0']
['MJD aperture_sum aperture_sum_err annulus_sum annulus_sum_err annulus_mean annulus_mean_err aperture_bkg aperture_bkg_err net_aperture_sum net_aperture_sum_err']
['59852.197994600116 0.0025506933167945413 6.595164052660127e-06 0.001179000350046699 4.220042936497716e-06 4.1698607470446016e-05 1.492534874230331e-07 0.001179000350046699 4.220042936497716e-06 0.0013716929667478422 7.829747841877452e-06']
['59852.19819722708 0.0025699538858711094 6.606899833077529e-06 0.0011795518513055658 4.219369682709775e-06 4.171811283743936e-05 1.4922967594118728e-07 0.0011795518513055658 4.219369682709775e-06 0.0013904020345655436 7.839273303290954e-06']
['59852.19839985405 0.0025618391690588036 6.599504856640305e-06 0.0011736414417922655 4.215981535915292e-06 4.1509074861941785e-05 1.4910984476112886e-07 0.0011736414417922655 4.215981535915292e-06 0.001388197727266538 7.831217316867005e-06']
['59852.19860248102 0.0025744105145915873 6.606898289177214e-06 0.0011802780714386342 4.219852323241743e-06 4.174379762053951e-05 1.4924674585816488e-07 0.0011802780714386342 4.219852323241743e-06 0.001394132443152953 7.839531786624858e-06']
['59852.19880510798 0.002565413400063865 6.602741261945395e-06 0.0011726392120995953 4.215070549786129e-06 4.1473628237563575e-05 1.4907762521767452e-07 0.0011726392120995953 4.215070549786129e-06 0.0013927741879642699 7.8334546601018e-06']
['59852.199007734955 0.0025677087363155143 6.602886439694078e-06 0.0011801892910060824 4.219821545102126e-06 4.174065765505275e-05 1.4924565730415173e-07 0.0011801892910060824 4.219821545102126e-06 0.001387519445309432 7.836134455712463e-06']
['59852.19921036192 0.0025609333311694986 6.596372432858244e-06 0.0011773915516130236 4.218840336486249e-06 4.1641707865299806e-05 1.4921095414828036e-07 0.0011773915516130236 4.218840336486249e-06 0.001383541779556475 7.830117691180357e-06']
['59852.19941298889 0.002560014062456282 6.599589175256255e-06 0.001182318991944274 4.2211386262336916e-06 4.181598041763511e-05 1.492922395202721e-07 0.001182318991944274 4.2211386262336916e-06 0.001377695070512008 7.834065903733617e-06']
['59852.19961561586 0.00255894862211703 6.5960155191739654e-06 0.001175308084822102 4.216777434308989e-06 4.156802030117914e-05 1.491379939085857e-07 0.001175308084822102 4.216777434308989e-06 0.001383640537294928 7.828705682274772e-06']
['59852.19981824282 0.0025658777885524922 6.6028199986151336e-06 0.001173550158190414 4.216066463062196e-06 4.150584636495114e-05 1.4911284844451384e-07 0.001173550158190414 4.216066463062196e-06 0.0013923276303620781 7.83405695378006e-06']
['59852.200020869794 0.0025712643755083377 6.605943873594942e-06 0.001176883772761194 4.218297124642714e-06 4.1623748862129545e-05 1.4919174195938153e-07 0.001176883772761194 4.218297124642714e-06 0.0013943806027471436 7.837890347080364e-06']
['59852.20022349676 0.0025607811437750104 6.6015288760028905e-06 0.0011731469294993916 4.216122438468878e-06 4.1491585067312766e-05 1.491148281695505e-07 0.0011731469294993916 4.216122438468878e-06 0.0013876342142756187 7.832998909540378e-06']
['59852.20042612372 0.002577194467019764 6.609325488943571e-06 0.0011734352926185256 4.2167950700385105e-06 4.150178382638289e-05 1.4913861764492534e-07 0.0011734352926185256 4.2167950700385105e-06 0.0014037591744012385 7.839932657969727e-06']
['59852.200628750696 0.00255539551268843 6.595246617491823e-06 0.001180507302414511 4.219657118865045e-06 4.17519050078552e-05 1.492398419156172e-07 0.001180507302414511 4.219657118865045e-06 0.001374888210273919 7.829609450434024e-06']
['59852.20083137766 0.002563261021443359 6.599221023204287e-06 0.001176861283805942 4.218355245292225e-06 4.1622953478042135e-05 1.4919379755686274e-07 0.001176861283805942 4.218355245292225e-06 0.001386399737637417 7.832256321685716e-06']
['59852.20103400463 0.0025547084833733385 6.597928274609437e-06 0.0011724934979456146 4.217162232399299e-06 4.146847465358924e-05 1.4915160335706685e-07 0.0011724934979456146 4.217162232399299e-06 0.001382214985427724 7.830524555306989e-06']
['59852.2012366316 0.002562311230806635 6.603173076378247e-06 0.0011799400214107746 4.219544682881311e-06 4.173184154655147e-05 1.4923586530615213e-07 0.0011799400214107746 4.219544682881311e-06 0.0013823712093958603 7.836226898669952e-06']
['59852.20143925856 0.002557467961213987 6.597700358877053e-06 0.0011773512133265752 4.219228830475782e-06 4.164028119025889e-05 1.4922469431245716e-07 0.0011773512133265752 4.219228830475782e-06 0.001380116747887412 7.831445712602776e-06']
['59852.201641885535 0.002568046061926252 6.604387822448449e-06 0.0011778609693336036 4.218652250636659e-06 4.1658310120989855e-05 1.4920430197212748e-07 0.0011778609693336036 4.218652250636659e-06 0.0013901850925926483 7.836770082189927e-06']
['59852.2018445125 0.0025655264452507424 6.603576411759523e-06 0.0011771151139318987 4.218662041982056e-06 4.163193088232028e-05 1.492046482701318e-07 0.0011771151139318987 4.218662041982056e-06 0.0013884113313188437 7.836091554493668e-06']
['59852.202047139464 0.002556816762062508 6.5971843057923394e-06 0.0011687710996758412 4.2137688297952865e-06 4.1336821745857875e-05 1.490315862907714e-07 0.0011687710996758412 4.2137688297952865e-06 0.0013880456623866669 7.828070548707842e-06']
['59852.20224976644 0.002556307710617564 6.59588450461966e-06 0.0011771847939401892 4.218356980770815e-06 4.1634395308487856e-05 1.4919385893686187e-07 0.0011771847939401892 4.218356980770815e-06 0.001379122916677375 7.829446213845498e-06']
['59852.2024523934 0.002555161937532204 6.594544596539159e-06 0.0011724567056689676 4.2154673323523236e-06 4.146717339299014e-05 1.4909165853028397e-07 0.0011724567056689676 4.2154673323523236e-06 0.0013827052318632364 7.82676071346719e-06']
['59852.202655020374 0.0025642064953986846 6.59761725903067e-06 0.0011774131371712943 4.2185765300511455e-06 4.164247129825496e-05 1.4920162390424343e-07 0.0011774131371712943 4.2185765300511455e-06 0.0013867933582273903 7.831024290382309e-06']
['59852.20285764734 0.0025630637062434057 6.602691943683062e-06 0.0011808735595474186 4.220607230292824e-06 4.1764858704109625e-05 1.4927344523344365e-07 0.0011808735595474186 4.220607230292824e-06 0.0013821901466959871 7.83639370473289e-06']
['59852.2030602743 0.002568733022069954 6.604130056816387e-06 0.0011830218358328353 4.220687799799753e-06 4.184083843520988e-05 1.4927629479684148e-07 0.0011830218358328353 4.220687799799753e-06 0.0013857111862371188 7.837648838186366e-06']
['59852.203262901276 0.002560037018977978 6.5993894661944055e-06 0.0011718546093752232 4.2156870954094435e-06 4.144587859268642e-05 1.4909943105847278e-07 0.0011718546093752232 4.2156870954094435e-06 0.0013881824096027547 7.830961563749332e-06']
['59852.20346552824 0.0025651353308198746 6.603255027411921e-06 0.0011757066701352072 4.217983271133239e-06 4.1582117372917927e-05 1.4918064166217273e-07 0.0011757066701352072 4.217983271133239e-06 0.0013894286606846674 7.835455304741433e-06']
['59852.203668155205 0.0025559096637471023 6.597943833985128e-06 0.0011723964671176727 4.214975665709496e-06 4.146504289005608e-05 1.4907426937993747e-07 0.0011723964671176727 4.214975665709496e-06 0.0013835131966294296 7.829360299471828e-06']
['59852.20387078218 0.0025720263454134173 6.607506432622285e-06 0.0011785976327432065 4.2195853697577565e-06 4.168436425944169e-05 1.492373043100422e-07 0.0011785976327432065 4.2195853697577565e-06 0.0013934287126702108 7.839900633925061e-06']
['59852.20407340914 0.002575492826665479 6.608222505055197e-06 0.001172731732381495 4.215856920917088e-06 4.1476900473163706e-05 1.491054374071405e-07 0.001172731732381495 4.215856920917088e-06 0.001402761094283984 7.838498214196549e-06']
['59852.204276036115 0.0025537010302418986 6.596328997578693e-06 0.0011703279722477355 4.215249333665942e-06 4.139188484932036e-05 1.4908394840394507e-07 0.0011703279722477355 4.215249333665942e-06 0.001383373057994163 7.828146855371883e-06']
['59852.20447866308 0.0025735082645637185 6.606174589743197e-06 0.0011762314368184447 4.217218836224903e-06 4.1600677197719526e-05 1.4915360530787634e-07 0.0011762314368184447 4.217218836224903e-06 0.0013972768277452738 7.83750454052684e-06']
['59852.204681290044 0.002559716075652169 6.597424406796477e-06 0.001172278613826489 4.215984917868547e-06 4.146087468253351e-05 1.4910996437325726e-07 0.001172278613826489 4.215984917868547e-06 0.0013874374618256802 7.829465986329394e-06']
['59852.20488391702 0.0025693305085766247 6.603034893118573e-06 0.0011842153592976148 4.22079931632638e-06 4.188305069279118e-05 1.4928023888716353e-07 0.0011842153592976148 4.22079931632638e-06 0.0013851151492790099 7.83678611858475e-06']
['59852.20508654398 0.0025723498727996796 6.605519019559664e-06 0.0011728036859502307 4.2152775864804234e-06 4.147944531008313e-05 1.4908494764285193e-07 0.0011728036859502307 4.2152775864804234e-06 0.0013995461868494489 7.835907519161306e-06']
['59852.205289170946 0.0025602309958737157 6.598747485670438e-06 0.001174525379625842 4.218246565061574e-06 4.1540337767630595e-05 1.4918995377999062e-07 0.001174525379625842 4.218246565061574e-06 0.0013857056162478736 7.831798801252219e-06']
['59852.20549179792 0.002566289236647921 6.60478299967331e-06 0.001174677410424826 4.217658005789597e-06 4.154571475722181e-05 1.4916913775389336e-07 0.001174677410424826 4.217658005789597e-06 0.0013916118262230952 7.836567968605559e-06']
['59852.20569442488 0.002566033537513174 6.603381227439669e-06 0.0011763997480514472 4.216621089272744e-06 4.160662998987736e-05 1.491324643340643e-07 0.0011763997480514472 4.216621089272744e-06 0.0013896337894617266 7.83482846304897e-06']
['59852.20589705185 0.002566202876284364 6.6012790096615634e-06 0.0011713915239903864 4.214662611495875e-06 4.1429500297559666e-05 1.4906319735203665e-07 0.0011713915239903864 4.214662611495875e-06 0.0013948113522939778 7.832002648884867e-06']
['59852.20609967882 0.002565520130794839 6.6041278040546875e-06 0.0011796521953572477 4.220157838872493e-06 4.1721661782291594e-05 1.4925755126323723e-07 0.0011796521953572477 4.220157838872493e-06 0.0013858679354375911 7.837361560964578e-06']
['59852.206302305785 0.0025693780972343232 6.604233412290027e-06 0.0011840221190219527 4.221225084027202e-06 4.18762162161076e-05 1.4929529733920676e-07 0.0011840221190219527 4.221225084027202e-06 0.0013853559782123705 7.838025272607153e-06']
['59852.20650493276 0.0025613473954938016 6.598060073858064e-06 0.0011770927709273459 4.217093007562507e-06 4.163114066018292e-05 1.4914915502929793e-07 0.0011770927709273459 4.217093007562507e-06 0.0013842546245664558 7.830598327884816e-06']
['59852.20670755972 0.002562776163628474 6.59953330902199e-06 0.0011767235002039654 4.218195216488741e-06 4.161808037996845e-05 1.491881376957268e-07 0.0011767235002039654 4.218195216488741e-06 0.0013860526634245087 7.832433260571024e-06']
['59852.20691018669 0.0025602356755754997 6.5999782395959375e-06 0.0011705449918050091 4.215171251384805e-06 4.139956034605096e-05 1.4908118680816488e-07 0.0011705449918050091 4.215171251384805e-06 0.0013896906837704906 7.831180079760702e-06']
['59852.20711281366 0.0025585618746287483 6.596080826894418e-06 0.0011760623520173069 4.216901239495479e-06 4.159469704618557e-05 1.4914237262134353e-07 0.0011760623520173069 4.216901239495479e-06 0.0013824995226114415 7.828827392309953e-06']
['59852.207315440624 0.0025670853082392763 6.602951242258533e-06 0.0011767968844071384 4.218809867731365e-06 4.162067581523063e-05 1.4920987653651376e-07 0.0011767968844071384 4.218809867731365e-06 0.001390288423832138 7.83564431350167e-06']
['59852.20751806759 0.0025675627778516657 6.602824760236997e-06 0.0011735386272529603 4.216597613094913e-06 4.150543854146353e-05 1.4913163403412056e-07 0.0011735386272529603 4.216597613094913e-06 0.0013940241505987054 7.834346829516578e-06']
['59852.20772069456 0.0025628199263194934 6.599495157470141e-06 0.0011759338276400983 4.216352912763402e-06 4.1590151426198776e-05 1.491229795302681e-07 0.0011759338276400983 4.216352912763402e-06 0.001386886098679395 7.831409082562362e-06']
['59852.207923321526 0.002569452255572284 6.604516633416545e-06 0.0011791958448529574 4.219138645090788e-06 4.17055216848382e-05 1.4922150465694238e-07 0.0011791958448529574 4.219138645090788e-06 0.0013902564107193267 7.83714047772364e-06']
['59852.2081259485 0.0025582313178925758 6.595604702359342e-06 0.0011780190434766897 4.2170008623702495e-06 4.1663900850155896e-05 1.4914589605978014e-07 0.0011780190434766897 4.2170008623702495e-06 0.001380212274415886 7.828479907556516e-06']
['59852.20832857546 0.002573349689508786 6.604972750555978e-06 0.0011690252009962545 4.213842437161639e-06 4.1345808741677866e-05 1.490341896188165e-07 0.0011690252009962545 4.213842437161639e-06 0.0014043244885125314 7.834675048833318e-06']
['59852.20853120243 0.0025638024153409513 6.602594125301297e-06 0.0011756766504635243 4.217575706918311e-06 4.158105564422052e-05 1.491662270267431e-07 0.0011756766504635243 4.217575706918311e-06 0.001388125764877427 7.834678935798881e-06']
['59852.2087338294 0.0025573527281408355 6.598769163656069e-06 0.0011732477496555615 4.215685825575994e-06 4.14951508509167e-05 1.490993861473016e-07 0.0011732477496555615 4.215685825575994e-06 0.001384104978485274 7.830438139413437e-06']
['59852.208936456365 0.002561742546205233 6.598374375987746e-06 0.0011731897253885002 4.216013679697321e-06 4.149309866226735e-05 1.491109816148621e-07 0.0011731897253885002 4.216013679697321e-06 0.0013885528208167329 7.830281971492892e-06']
['59852.20913908333 0.00257276709097847 6.6106438978894974e-06 0.0011748657425955788 4.2170858970689e-06 4.155237564520371e-05 1.4914890354703005e-07 0.0011748657425955788 4.2170858970689e-06 0.0013979013483828913 7.841200559095593e-06']
['59852.2093417103 0.002572099420616041 6.6070424687392005e-06 0.0011730743670984602 4.216619317402941e-06 4.148901869735924e-05 1.4913240166698928e-07 0.0011730743670984602 4.216619317402941e-06 0.001399025053517581 7.837913539432484e-06']
['59852.20954433727 0.00256438029349282 6.5999318016443945e-06 0.0011747889233120691 4.2168909101411425e-06 4.154965871882697e-05 1.4914200729516538e-07 0.0011747889233120691 4.2168909101411425e-06 0.001389591370180751 7.832066696242315e-06']
['59852.20974696424 0.0025682103625524473 6.603027808710804e-06 0.0011763824232097848 4.2173304420998766e-06 4.16060172489465e-05 1.491575525582497e-07 0.0011763824232097848 4.2173304420998766e-06 0.0013918279393426625 7.834912399029777e-06']
['59852.209949591204 0.0025648203359508277 6.600415166867705e-06 0.00117652809249557 4.21735788986248e-06 4.1611169246033026e-05 1.4915852332427085e-07 0.00117652809249557 4.21735788986248e-06 0.0013882922434552576 7.832725448156762e-06']
['59852.21015221817 0.0025662796009385046 6.604207733907099e-06 0.001175630596951967 4.2181022705746105e-06 4.157942683444028e-05 1.4918485040646592e-07 0.001175630596951967 4.2181022705746105e-06 0.0013906490039865375 7.836322259684388e-06']
['59852.21035484514 0.002566437787917181 6.602151595026017e-06 0.0011788863345120705 4.219573927698514e-06 4.169457499579593e-05 1.492368996299783e-07 0.0011788863345120705 4.219573927698514e-06 0.0013875514534051107 7.835381918899528e-06']
['59852.210557472106 0.0025682872659058224 6.601343596103731e-06 0.001172880488228787 4.216326233724305e-06 4.1482161635032677e-05 1.4912203595227938e-07 0.001172880488228787 4.216326233724305e-06 0.0013954067776770353 7.832952456322681e-06']
['59852.21076009907 0.0025526362038128378 6.592043972286146e-06 0.0011791288138244046 4.2201932024030364e-06 4.1703150947163816e-05 1.4925880199227974e-07 0.0011791288138244046 4.2201932024030364e-06 0.0013735073899884332 7.827200929972535e-06']
['59852.21096272604 0.0025684914577908066 6.606280903422267e-06 0.0011775322897360219 4.218360638316567e-06 4.164668545817906e-05 1.4919398829608102e-07 0.0011775322897360219 4.218360638316567e-06 0.0013909591680547847 7.838208586776718e-06']
['59852.21116535301 0.002571449440121143 6.60582309079466e-06 0.0011768509441531605 4.2177498478182156e-06 4.1622587787631016e-05 1.4917238600119075e-07 0.0011768509441531605 4.2177498478182156e-06 0.0013945984959679825 7.83749401822078e-06']
['59852.21136797998 0.002554289819491553 6.596533421502684e-06 0.0011704805309439637 4.214625901105828e-06 4.1397280509457334e-05 1.490618989875836e-07 0.0011704805309439637 4.214625901105828e-06 0.0013838092885475894 7.827983435551842e-06']
['59852.211570606945 0.0025606484843636763 6.601301780947116e-06 0.0011783075095043868 4.219273138121643e-06 4.167410324887191e-05 1.4922626137486953e-07 0.0011783075095043868 4.219273138121643e-06 0.0013823409748592896 7.83450387817955e-06']
['59852.21177323391 0.002563249810867768 6.601590100667164e-06 0.0011766233452332037 4.2190549843767934e-06 4.161453812248579e-05 1.492185457644591e-07 0.0011766233452332037 4.2190549843767934e-06 0.0013866264656345643 7.83462933510076e-06']
['59852.21197586088 0.0025664253237139027 6.602647090064332e-06 0.0011763246407919448 4.217240136085592e-06 4.16039736139636e-05 1.491543586363465e-07 0.0011763246407919448 4.217240136085592e-06 0.001390100682921958 7.834542932510245e-06']
['59852.21217848785 0.0025773226184036355 6.60913671721196e-06 0.0011868266690685707 4.221825557274192e-06 4.1975406883456016e-05 1.4931653473597405e-07 0.0011868266690685707 4.221825557274192e-06 0.0013904959493350648 7.84248042285429e-06']
['59852.21238111481 0.002563347877039965 6.600746442067267e-06 0.001181811378103438 4.220136348838507e-06 4.1798027250534906e-05 1.4925679120876258e-07 0.001181811378103438 4.220136348838507e-06 0.0013815364989365271 7.834500902753901e-06']
['59852.212583741784 0.0025708719063572147 6.60533985924282e-06 0.0011741845302533744 4.217145284738036e-06 4.152828268707993e-05 1.4915100395616377e-07 0.0011741845302533744 4.217145284738036e-06 0.0013966873761038403 7.836761385208191e-06']
['59852.21278636875 0.0025682585496407664 6.603675794859807e-06 0.001175751506635094 4.218125155066045e-06 4.158370313971524e-05 1.4918565977978415e-07 0.001175751506635094 4.218125155066045e-06 0.0013925070430056725 7.835886282190308e-06']
['59852.212988995714 0.002562221865375145 6.600894109609312e-06 0.0011837909725282043 4.221836666484821e-06 4.186804108120573e-05 1.493169276439264e-07 0.0011837909725282043 4.221836666484821e-06 0.0013784308928469408 7.835541326848488e-06']
['59852.213191622686 0.0025554349945037342 6.597695418448081e-06 0.0011780603563332382 4.2186262966767076e-06 4.166536199356322e-05 1.492033840385677e-07 0.0011780603563332382 4.2186262966767076e-06 0.001377374638170496 7.831116948789811e-06']
['59852.21339424965 0.002561850263283288 6.6007313718262516e-06 0.0011770164977054577 4.219493121041314e-06 4.162844304678535e-05 1.4923404167910537e-07 0.0011770164977054577 4.219493121041314e-06 0.0013848337655778303 7.834141742496509e-06']
['59852.21359687662 0.0025707042716631855 6.603806229699704e-06 0.0011766163837685856 4.2176317380494276e-06 4.1614291911040206e-05 1.4916820872262852e-07 0.0011766163837685856 4.2176317380494276e-06 0.0013940878878945999 7.835730610301916e-06']
['59852.21379950359 0.002574608853425505 6.609593340990057e-06 0.0011802890453985802 4.219230829625519e-06 4.174418574497745e-05 1.4922476501791552e-07 0.0011802890453985802 4.219230829625519e-06 0.0013943198080269249 7.841468799078558e-06']
['59852.21400213055 0.0025548001210472363 6.5958902741720425e-06 0.0011699209242862412 4.214121155895052e-06 4.137748847262096e-05 1.490440472775176e-07 0.0011699209242862412 4.214121155895052e-06 0.0013848791967609952 7.827169707210876e-06']
['59852.214204757525 0.0025658623782138395 6.602880005920407e-06 0.0011725631995687107 4.216269984101208e-06 4.1470939844224196e-05 1.4912004652882094e-07 0.0011725631995687107 4.216269984101208e-06 0.0013932991786451288 7.8342170605247e-06']
['59852.21440738449 0.002573858966856476 6.6103425700267655e-06 0.0011766399700789952 4.217571461996905e-06 4.1615126106127094e-05 1.4916607689335984e-07 0.0011766399700789952 4.217571461996905e-06 0.0013972189967774809 7.841207683141594e-06']
['59852.214610011455 0.0025496688133617874 6.591727702060674e-06 0.0011740076836026525 4.215122515297916e-06 4.1522028016272895e-05 1.4907946312169036e-07 0.0011740076836026525 4.215122515297916e-06 0.0013756611297591349 7.824201679218495e-06']
['59852.21481263843 0.0025683779395625933 6.605402860801846e-06 0.0011764968064568756 4.217557172061449e-06 4.161006272876459e-05 1.4916557149027888e-07 0.0011764968064568756 4.217557172061449e-06 0.0013918811331057176 7.837036139580841e-06']
['59852.21501526539 0.002556050873374857 6.597658343346889e-06 0.0011798778064614974 4.219743505660014e-06 4.172964114283776e-05 1.492428972234921e-07 0.0011798778064614974 4.219743505660014e-06 0.0013761730669133597 7.831687613094298e-06']
['59852.215217892364 0.002570377635523057 6.606278607409069e-06 0.0011787196191908108 4.217765882070674e-06 4.168867864746979e-05 1.4917295309686576e-07 0.0011787196191908108 4.217765882070674e-06 0.0013916580163322461 7.837886582151474e-06']
['59852.21542051933 0.0025580060375359264 6.598103186212307e-06 0.0011794250480214614 4.220410200284647e-06 4.171362808866925e-05 1.4926647672239058e-07 0.0011794250480214614 4.220410200284647e-06 0.001378580989514465 7.832421586876671e-06']
['59852.215623146294 0.0025663280057158745 6.602932837112443e-06 0.0011726133585942718 4.215490175574149e-06 4.147271385685947e-05 1.4909246644398835e-07 0.0011726133585942718 4.215490175574149e-06 0.0013937146471216027 7.833841935588178e-06']
['59852.215825773266 0.0025671235139402325 6.604337187555523e-06 0.0011733778600528748 4.21654418030008e-06 4.149975256489005e-05 1.491297442355826e-07 0.0011733778600528748 4.21654418030008e-06 0.0013937456538873577 7.835592798975154e-06']
['59852.21602840023 0.002562421096175584 6.597877986345503e-06 0.0011760327857708542 4.218137517950886e-06 4.159365135412521e-05 1.4918609702739154e-07 0.0011760327857708542 4.218137517950886e-06 0.0013863883104047298 7.83100747305527e-06']
['59852.216231027196 0.0025616100188906085 6.600579668222753e-06 0.0011781227951096662 4.216713470636219e-06 4.166757031354303e-05 1.491357316564302e-07 0.0011781227951096662 4.216713470636219e-06 0.0013834872237809422 7.832517120951638e-06']
['59852.21643365417 0.0025766630114616032 6.608935794706173e-06 0.0011744327310218598 4.2168391679404e-06 4.1537060993565185e-05 1.4914017728916215e-07 0.0011744327310218598 4.2168391679404e-06 0.0014022302804397434 7.839627855123278e-06']
['59852.21663628113 0.0025699711433227438 6.604075368291375e-06 0.0011766367491295566 4.217249851650689e-06 4.161501218834385e-05 1.49154702254171e-07 0.0011766367491295566 4.217249851650689e-06 0.0013933343941931872 7.835751896360719e-06']
['59852.216838908105 0.00256264559941189 6.601441859657321e-06 0.0011810290755223899 4.220487735272363e-06 4.1770358956586604e-05 1.492692189616256e-07 0.0011810290755223899 4.220487735272363e-06 0.0013816165238895001 7.83527608639417e-06']
['59852.21704153507 0.0025780407854168975 6.609598875053771e-06 0.0011791340546781837 4.2183860012536665e-06 4.170333630444937e-05 1.4919488532648338e-07 0.0011791340546781837 4.2183860012536665e-06 0.0013989067307387138 7.84101892260725e-06']
['59852.217244162035 0.0025671744968423483 6.603780643739708e-06 0.001183319658757875 4.220270558262413e-06 4.185137176647347e-05 1.492615378961457e-07 0.001183319658757875 4.220270558262413e-06 0.0013838548380844732 7.837129728131835e-06']
['59852.21744678901 0.0025596805271811776 6.597114122434562e-06 0.0011746994911688267 4.216496233563335e-06 4.1546495703789565e-05 1.491280484666586e-07 0.0011746994911688267 4.216496233563335e-06 0.0013849810360123508 7.829479882602632e-06']
['59852.21764941597 0.0025624740654977664 6.601467621234762e-06 0.001173362743250314 4.216654544386471e-06 4.149921791736754e-05 1.4913364756666902e-07 0.001173362743250314 4.216654544386471e-06 0.0013891113222474524 7.833233706516488e-06']
['59852.21785204294 0.0025674520775212264 6.604788461947494e-06 0.001178855538941343 4.218202390497529e-06 4.169348582528335e-05 1.4918839142438467e-07 0.001178855538941343 4.218202390497529e-06 0.0013885965385798834 7.836865574595102e-06']
['59852.21805466991 0.002569579249285542 6.607336450959245e-06 0.0011770097683435866 4.219616175710784e-06 4.162820504429521e-05 1.492383938477535e-07 0.0011770097683435866 4.219616175710784e-06 0.0013925694809419555 7.839773953788133e-06']
['59852.218257296874 0.002570101168608962 6.6066285164387886e-06 0.0011766535185395945 4.218042584350256e-06 4.161560528489946e-05 1.4918273943810137e-07 0.0011766535185395945 4.218042584350256e-06 0.0013934476500693674 7.838330408806098e-06']
['59852.21845992384 0.0025674487448875917 6.606203163271992e-06 0.0011814621599816038 4.220318661292644e-06 4.17856761860222e-05 1.4926323919282104e-07 0.0011814621599816038 4.220318661292644e-06 0.0013859865849059879 7.839197014827462e-06']
['59852.21866255081 0.002562417183272498 6.599030942935742e-06 0.00117982827829538 4.219453320842998e-06 4.172788944229112e-05 1.4923263403503915e-07 0.00117982827829538 4.219453320842998e-06 0.001382588904977118 7.83268764298669e-06']
['59852.218865177776 0.002569353523155835 6.605420398815354e-06 0.001174306560362296 4.216485213068184e-06 4.153259861931124e-05 1.4912765869637447e-07 0.001174306560362296 4.216485213068184e-06 0.001395046962793539 7.836474092160877e-06']
['59852.21906780475 0.002573897478402896 6.608485641429734e-06 0.0011829027667206204 4.219722847092029e-06 4.183662722681464e-05 1.4924216657611166e-07 0.0011829027667206204 4.219722847092029e-06 0.0013909947116822758 7.840799919603447e-06']
['59852.21927043171 0.002564337351259745 6.602725489581809e-06 0.001174566799640976 4.217941987489615e-06 4.154180270099759e-05 1.4917918155196125e-07 0.001174566799640976 4.217941987489615e-06 0.0013897705516187691 7.83498682198006e-06']
['59852.21947305868 0.0025595437784990136 6.597061070033094e-06 0.0011772094486252273 4.218388549982483e-06 4.163526728959768e-05 1.4919497546932555e-07 0.0011772094486252273 4.218388549982483e-06 0.0013823343298737863 7.830454438943471e-06']
['59852.21967568565 0.002575859280104236 6.610167500546465e-06 0.001177329436099301 4.217933468545928e-06 4.163951097839944e-05 1.4917888025596174e-07 0.001177329436099301 4.217933468545928e-06 0.001398529844004935 7.84125481860911e-06']
['59852.219878312615 0.0025622777324859096 6.599463188722434e-06 0.001174000118817946 4.216845834025696e-06 4.1521760466744126e-05 1.4914041305370124e-07 0.001174000118817946 4.216845834025696e-06 0.0013882776136679635 7.83164753849676e-06']
['59852.22008093958 0.0025740165538040835 6.606460389218149e-06 0.0011723816475871563 4.2144934554030265e-06 4.146451875638141e-05 1.4905721467907422e-07 0.0011723816475871563 4.2144934554030265e-06 0.0014016349062169271 7.836279344174973e-06']
['59852.22028356655 0.002564504419829778 6.601094769705459e-06 0.0011755693793593937 4.216864198694659e-06 4.157726170500423e-05 1.4914106257099982e-07 0.0011755693793593937 4.216864198694659e-06 0.0013889350404703844 7.833032352088527e-06']
['59852.22048619352 0.0025654533391125636 6.602865814000183e-06 0.001171906561721191 4.214944539338206e-06 4.144771603105664e-05 1.4907316850974827e-07 0.001171906561721191 4.214944539338206e-06 0.0013935467773913727 7.833491841279294e-06']
['59852.22068882049 0.0025638315146883574 6.600057642172769e-06 0.0011688816933728666 4.21331607296806e-06 4.1340733197759295e-05 1.4901557329364435e-07 0.0011688816933728666 4.21331607296806e-06 0.0013949498213154908 7.830248604657081e-06']
['59852.220891447454 0.002552822462318119 6.594586729520553e-06 0.0011756323414597702 4.2174498133289146e-06 4.1579488533782536e-05 1.4916177445184178e-07 0.0011756323414597702 4.2174498133289146e-06 0.0013771901208583486 7.827864144268007e-06']
['59852.22109407442 0.002570927109837553 6.60694138006515e-06 0.0011786384337878362 4.219113608145678e-06 4.1685807301205274e-05 1.4922061915614815e-07 0.0011786384337878362 4.219113608145678e-06 0.0013922886760497166 7.839170494258767e-06']
['59852.22129670139 0.0025702687892616327 6.603317675683965e-06 0.0011733265099278353 4.214805208532912e-06 4.149793642572818e-05 1.4906824069055104e-07 0.0011733265099278353 4.214805208532912e-06 0.0013969422793337974 7.833797755359559e-06']
['59852.221499328356 0.002562828456964458 6.599938065813593e-06 0.001179503423352259 4.2190535996989495e-06 4.1716400048961004e-05 1.4921849679149832e-07 0.001179503423352259 4.2190535996989495e-06 0.001383325033612199 7.833236607540202e-06']
['59852.22170195532 0.002569199837131435 6.605559986384118e-06 0.0011718111247072047 4.215715229917971e-06 4.1444340637161116e-05 1.491004261131625e-07 0.0011718111247072047 4.215715229917971e-06 0.0013973887124242301 7.836177488640829e-06']
['59852.22190458229 0.002564894445277048 6.603560304496594e-06 0.0011802541361490217 4.219532273426977e-06 4.1742951082838144e-05 1.4923542641148584e-07 0.0011802541361490217 4.219532273426977e-06 0.0013846403091280265 7.836546516266906e-06']
['59852.22210720926 0.002559221006632329 6.598815200320726e-06 0.0011808733456885137 4.218877122694005e-06 4.17648511403981e-05 1.4921225519423633e-07 0.0011808733456885137 4.218877122694005e-06 0.0013783476609438156 7.832195491966138e-06']
['59852.22230983623 0.002573871385447045 6.60712299436189e-06 0.0011778661177256871 4.217429672553799e-06 4.1658492208111874e-05 1.4916106211763793e-07 0.0011778661177256871 4.217429672553799e-06 0.001396005267721358 7.83841739801874e-06']
['59852.222512463195 0.00256908231369023 6.60529166916513e-06 0.0011776688328581793 4.218606699755135e-06 4.165151468325385e-05 1.492026909392482e-07 0.0011776688328581793 4.218606699755135e-06 0.0013914134808320506 7.837507290073878e-06']
['59852.22271509016 0.002568285132374552 6.604914682469304e-06 0.0011760181989601513 4.217752126357718e-06 4.1593135451230256e-05 1.4917246658804072e-07 0.0011760181989601513 4.217752126357718e-06 0.0013922669334144005 7.836729608841538e-06']
['59852.22291771713 0.0025628110391386115 6.60028156626522e-06 0.0011775068255928257 4.218659267441952e-06 4.164578484834322e-05 1.4920455014084906e-07 0.0011775068255928257 4.218659267441952e-06 0.0013853042135457858 7.83331365188158e-06']
['59852.2231203441 0.0025555575451000393 6.592597310672257e-06 0.0011691290428894907 4.212992737595471e-06 4.134948139736866e-05 1.4900413764412792e-07 0.0011691290428894907 4.212992737595471e-06 0.0013864285022105486 7.823787261148866e-06']
['59852.22332297106 0.0025577252561741924 6.597664316169227e-06 0.001173083013461321 4.2161547821445394e-06 4.148932449989014e-05 1.491159720930748e-07 0.001173083013461321 4.2161547821445394e-06 0.0013846422427128714 7.82975961162621e-06']
['59852.223525598034 0.0025521877218892975 6.596777718596091e-06 0.00118191839005649 4.219872897160501e-06 4.180181202415672e-05 1.4924747351169134e-07 0.00118191839005649 4.219872897160501e-06 0.0013702693318328075 7.831015485666951e-06']
['59852.223728225 0.0025592786140985133 6.598778730128598e-06 0.0011754379210234527 4.216786003162922e-06 4.1572612317454086e-05 1.4913829696979903e-07 0.0011754379210234527 4.216786003162922e-06 0.0013838406930750606 7.831038559837918e-06']
['59852.22393085197 0.0025638337151766017 6.603218828718448e-06 0.0011794628975223518 4.218661138441318e-06 4.1714966740927085e-05 1.492046163139152e-07 0.0011794628975223518 4.218661138441318e-06 0.0013843708176542499 7.835789730520903e-06']
['59852.224133478936 0.0025754957393693116 6.6092748725487764e-06 0.00118059996359714 4.219794224009477e-06 4.175518222679923e-05 1.4924469101816375e-07 0.00118059996359714 4.219794224009477e-06 0.0013948957757721715 7.84150353145928e-06']
['59852.2243361059 0.0025669902334111818 6.6024524499567285e-06 0.0011786971547025544 4.218847836348414e-06 4.168788412872533e-05 1.492112194016439e-07 0.0011786971547025544 4.218847836348414e-06 0.0013882930787086274 7.835244439084292e-06']
['59852.22453873287 0.002570648037975151 6.603317569573856e-06 0.0011807894063976705 4.220105930491167e-06 4.176188239527425e-05 1.4925571537979816e-07 0.0011807894063976705 4.220105930491167e-06 0.0013898586315774803 7.83665087835419e-06']
['59852.22474135984 0.0025593885924911288 6.598208904985817e-06 0.001176085124753422 4.218885644806709e-06 4.1595502466967885e-05 1.4921255660231688e-07 0.001176085124753422 4.218885644806709e-06 0.0013833034677377069 7.831689271018754e-06']
['59852.2249439868 0.002567846808895277 6.604341275288108e-06 0.001176899728213369 4.217804161041007e-06 4.162431317081463e-05 1.4917430693849798e-07 0.001176899728213369 4.217804161041007e-06 0.001390947080681908 7.836274345718697e-06']
['59852.225146613775 0.0025715935239196087 6.60471828272127e-06 0.0011793446294629988 4.2191429457470765e-06 4.1710783863981325e-05 1.4922165676154393e-07 0.0011793446294629988 4.2191429457470765e-06 0.00139224889445661 7.83731272763566e-06']
['59852.22534924074 0.0025761773370739146 6.6101894914010345e-06 0.001170640047081743 4.215278603023406e-06 4.1402922238753e-05 1.4908498359570539e-07 0.001170640047081743 4.215278603023406e-06 0.0014055372899921717 7.839845586064538e-06']
['59852.225551867705 0.002570084312821096 6.6042135967485095e-06 0.0011755806903074929 4.217219291065864e-06 4.1577661747960016e-05 1.4915362139458462e-07 0.0011755806903074929 4.217219291065864e-06 0.0013945036225136032 7.83585194987858e-06']
['59852.22575449468 0.0025741451897409798 6.609054346230443e-06 0.001175480448504053 4.218081259227059e-06 4.157411641939959e-05 1.4918410728206063e-07 0.001175480448504053 4.218081259227059e-06 0.0013986647412369269 7.840395963270608e-06']
['59852.22595712164 0.0025691499165247504 6.603055154206518e-06 0.0011738631446778442 4.217556848861777e-06 4.151691599752791e-05 1.4916556005942878e-07 0.0011738631446778442 4.217556848861777e-06 0.0013952867718469062 7.83505731586401e-06']
['59852.226159748614 0.002568633625160975 6.602247309861489e-06 0.0011858829150818112 4.222055593442318e-06 4.194202841411036e-05 1.4932467060114012e-07 0.0011858829150818112 4.222055593442318e-06 0.0013827507100791637 7.836799281255762e-06']
['59852.22636237558 0.0025741399507645487 6.607449478534721e-06 0.0011762831698711067 4.217752596842967e-06 4.1602506880175615e-05 1.491724832280525e-07 0.0011762831698711067 4.217752596842967e-06 0.001397856780893442 7.838866345305574e-06']
['59852.226565002544 0.0025676882069860423 6.605361743366598e-06 0.001177803880356654 4.218513969954443e-06 4.1656291011461506e-05 1.4919941129343664e-07 0.001177803880356654 4.218513969954443e-06 0.0013898843266293883 7.837516435417013e-06']
['59852.226767629516 0.0025699660380585874 6.605454044804582e-06 0.0011855379844502275 4.222474618481439e-06 4.192982898854584e-05 1.4933949058030798e-07 0.0011855379844502275 4.222474618481439e-06 0.00138442805360836 7.839726719838209e-06']
['59852.22697025648 0.0025753251949277717 6.609414917828126e-06 0.00117971116428688 4.218575287474222e-06 4.172374738154489e-05 1.4920157995707462e-07 0.00117971116428688 4.218575287474222e-06 0.0013956140306408916 7.840965693847741e-06']
['59852.227172883446 0.0025619176922590235 6.599153088712086e-06 0.0011742556567861447 4.2165084620757304e-06 4.1530798273585564e-05 1.491284809618129e-07 0.0011742556567861447 4.2165084620757304e-06 0.0013876620354728788 7.831204575224331e-06']
['59852.22737551042 0.0025624752488459033 6.600573854001575e-06 0.0011733026681720977 4.2161515384516445e-06 4.149709319611093e-05 1.4911585737090634e-07 0.0011733026681720977 4.2161515384516445e-06 0.0013891725806738056 7.832209713568538e-06']
['59852.22757813738 0.0025802558296942613 6.612239120235541e-06 0.0011948756667508153 4.228623813072612e-06 4.226008194302589e-05 1.4955697385035668e-07 0.0011948756667508153 4.228623813072612e-06 0.001385380162943446 7.848755667980628e-06']
['59852.227780764355 0.002571504563998807 6.606908721861478e-06 0.0011786869227480175 4.2196682191032334e-06 4.168752224736044e-05 1.4924023450623433e-07 0.0011786869227480175 4.2196682191032334e-06 0.0013928176412507894 7.839441481273977e-06']
['59852.22798339132 0.0025641626874766165 6.6027012354037415e-06 0.0011789109332356305 4.2194330174517816e-06 4.169544499767333e-05 1.4923191594946724e-07 0.0011789109332356305 4.2194330174517816e-06 0.001385251754240986 7.835769176843097e-06']
['59852.228186018285 0.002559466287768612 6.598196519321987e-06 0.0011725950208983525 4.216256530010164e-06 4.1472065293537137e-05 1.4911957068768882e-07 0.0011725950208983525 4.216256530010164e-06 0.0013868712668702596 7.830262858579278e-06']
['59852.22838864526 0.0025651482750102465 6.603422682840184e-06 0.0011797641831377843 4.217844758535364e-06 4.172562253981121e-05 1.4917574278114332e-07 0.0011797641831377843 4.217844758535364e-06 0.0013853840918724622 7.835522033365263e-06']
['59852.22859127222 0.0025663624385669033 6.602459780157345e-06 0.0011794888073341822 4.218349467248219e-06 4.17158831130665e-05 1.4919359320035938e-07 0.0011794888073341822 4.218349467248219e-06 0.001386873631232721 7.834982283096032e-06']
['59852.22879389919 0.0025669485257295 6.602303421393724e-06 0.0011762700433700843 4.217612358152983e-06 4.1602042625170455e-05 1.4916752329900278e-07 0.0011762700433700843 4.217612358152983e-06 0.0013906784823594159 7.83445368049311e-06']
['59852.22899652616 0.002564445218455825 6.60244084602694e-06 0.0011845598081814265 4.221893007116847e-06 4.189523308001364e-05 1.4931892028616727e-07 0.0011845598081814265 4.221893007116847e-06 0.0013798854102743984 7.83687473989645e-06']
['59852.229199153124 0.002559079295143404 6.595540948628951e-06 0.0011743157502327342 4.216280743300918e-06 4.153292364449049e-05 1.4912042705766927e-07 0.0011743157502327342 4.216280743300918e-06 0.00138476354491067 7.828038305435879e-06']
['59852.229401780096 0.002558247518008292 6.59883495923569e-06 0.00117461385373219 4.216261465967873e-06 4.1543466899044124e-05 1.491197452614818e-07 0.00117461385373219 4.216261465967873e-06 0.0013836336642761022 7.830803507216654e-06']
['59852.22960440706 0.002581524309011485 6.611779033007401e-06 0.0011901091275318138 4.224791574306097e-06 4.209150010343801e-05 1.4942143612973463e-07 0.0011901091275318138 4.224791574306097e-06 0.0013914151814796714 7.84630395967707e-06']
['59852.229807034026 0.0025642035811308133 6.603312976092387e-06 0.0011747835601248753 4.217230740849753e-06 4.154946903488194e-05 1.49154026347852e-07 0.0011747835601248753 4.217230740849753e-06 0.001389420021005938 7.835099066495474e-06']
['59852.230009661 0.0025648856811232045 6.6017150655707636e-06 0.0011847879320505581 4.219932899046237e-06 4.190330131143799e-05 1.492495956442935e-07 0.0011847879320505581 4.219932899046237e-06 0.0013800977490726464 7.83520743053027e-06']
['59852.23021228796 0.002569887913665035 6.603896014292727e-06 0.0011785431776670902 4.2184171931388475e-06 4.168243830509939e-05 1.4919598851375247e-07 0.0011785431776670902 4.2184171931388475e-06 0.0013913447359979448 7.836229079280467e-06']
['59852.23041491493 0.0025629221216211 6.6009781678816225e-06 0.0011796907367432952 4.2194441576028975e-06 4.172302490498117e-05 1.4923230995171542e-07 0.0011796907367432952 4.2194441576028975e-06 0.0013832313848778047 7.834323312959394e-06']
['59852.2306175419 0.0025671630139371495 6.60541907526096e-06 0.0011771669772990107 4.21881540007617e-06 4.1633765173707225e-05 1.4921007220318546e-07 0.0011771669772990107 4.21881540007617e-06 0.0013899960366381388 7.83772700084286e-06']
['59852.230820168865 0.002562706162345672 6.601032269896638e-06 0.0011723051164755287 4.215211216917473e-06 4.146181202200011e-05 1.4908260029973763e-07 0.0011723051164755287 4.215211216917473e-06 0.0013904010458701435 7.832089927435948e-06']
['59852.23102279584 0.0025667922276782296 6.603629960093602e-06 0.001180125253266375 4.21928900690201e-06 4.1738392783315224e-05 1.4922682261816645e-07 0.001180125253266375 4.21928900690201e-06 0.0013866669744118545 7.836474231030814e-06']
['59852.2312254228 0.0025672482779178995 6.603613069286145e-06 0.0011735468725368864 4.216243108846098e-06 4.150573015872887e-05 1.4911909601111038e-07 0.0011735468725368864 4.216243108846098e-06 0.001393701405381013 7.834820452425122e-06']
['59852.23142804977 0.002564029319984619 6.601592444519457e-06 0.0011804778281012845 4.221773211640635e-06 4.175086256726759e-05 1.4931468338790078e-07 0.0011804778281012845 4.221773211640635e-06 0.0013835514918833344 7.836095446972482e-06']
['59852.23163067674 0.002563862187037505 6.601217418344394e-06 0.0011807463498686689 4.219220937187433e-06 4.1760359582069144e-05 1.4922441514448874e-07 0.0011807463498686689 4.219220937187433e-06 0.001383115837168836 7.834404681981537e-06']
['59852.231833303704 0.0025648634515055154 6.599603118096058e-06 0.0011770212475934532 4.218919652919585e-06 4.1628611039708376e-05 1.4921375939326565e-07 0.0011770212475934532 4.218919652919585e-06 0.0013878422039120622 7.832882250753826e-06']
['59852.23203593067 0.0025647093181422236 6.603458195204317e-06 0.0011713396795578702 4.21522389702697e-06 4.142766667584706e-05 1.4908304876687216e-07 0.0011713396795578702 4.21522389702697e-06 0.0013933696385843534 7.834141474206238e-06']
['59852.23223855764 0.0025613468211871633 6.6014219574915814e-06 0.0011754237102083282 4.217033812216656e-06 4.1572109712682435e-05 1.4914706142220896e-07 0.0011754237102083282 4.217033812216656e-06 0.0013859231109788351 7.833399391977313e-06']
['59852.232441184606 0.002665986396559532 6.671108635827668e-06 0.0011800740087038308 4.219359628560563e-06 4.173658037766289e-05 1.4922932034839936e-07 0.0011800740087038308 4.219359628560563e-06 0.0014859123878557014 7.89345843760143e-06']
['59852.23264381157 0.002564096064936472 6.60059016101034e-06 0.0011813023647665425 4.219147429858703e-06 4.178002458638677e-05 1.4922181535455076e-07 0.0011813023647665425 4.219147429858703e-06 0.0013827937001699296 7.833836576576628e-06']
['59852.23284643854 0.002558967644885848 6.598412292728285e-06 0.0011725817375752576 4.215816108406224e-06 4.147159549208575e-05 1.4910399395984184e-07 0.0011725817375752576 4.215816108406224e-06 0.0013863859073105903 7.830207547998019e-06']
['59852.23304906551 0.002579282076309898 6.6119833775286906e-06 0.0011769939897230514 4.218290784128155e-06 4.1627646989750023e-05 1.491915177095518e-07 0.0011769939897230514 4.218290784128155e-06 0.0014022880865868466 7.842977835247032e-06']
['59852.23325169248 0.0025573344644589545 6.5928878833428216e-06 0.0011751228278832195 4.21762579538454e-06 4.156146817727576e-05 1.491679985438525e-07 0.0011751228278832195 4.21762579538454e-06 0.001382211636575735 7.82652783756767e-06']
['59852.233454319445 0.0025609113261717636 6.5983732024916274e-06 0.0011727397948789109 4.21525701663403e-06 4.147718562567868e-05 1.490842201333559e-07 0.0011727397948789109 4.21525701663403e-06 0.0013881715312928527 7.829873602788363e-06']
['59852.23365694641 0.0025634568285048415 6.600741449108672e-06 0.0011719075117359648 4.215806754009422e-06 4.1447749630956035e-05 1.491036631157328e-07 0.0011719075117359648 4.215806754009422e-06 0.0013915493167688767 7.832165362473694e-06']
['59852.23385957338 0.0025623513744503132 6.6003101597410296e-06 0.001175447680879645 4.21774506481698e-06 4.157295750175561e-05 1.4917221683712642e-07 0.001175447680879645 4.21774506481698e-06 0.0013869036935706682 7.832845436785323e-06']
['59852.23406220035 0.002568784078024786 6.604174880945614e-06 0.0011779120903254762 4.220133925166309e-06 4.16601181562237e-05 1.492567054888935e-07 0.0011779120903254762 4.220133925166309e-06 0.0013908719876993098 7.837388353555832e-06']
['59852.23426482731 0.0025588190330418452 6.595132930436292e-06 0.0011770847809897322 4.217349093558029e-06 4.163085807394598e-05 1.49158212218641e-07 0.0011770847809897322 4.217349093558029e-06 0.001381734252052113 7.828270035394788e-06']
['59852.234467454284 0.002564972531072778 6.599988074701369e-06 0.0011744606245020649 4.2171369057767235e-06 4.153804752362178e-05 1.49150707611028e-07 0.0011744606245020649 4.2171369057767235e-06 0.0013905119065707133 7.832246565849696e-06']
['59852.23467008125 0.0025601926121855485 6.597940188280581e-06 0.0011832884469940173 4.220600633914509e-06 4.185026787614001e-05 1.4927321193428469e-07 0.0011832884469940173 4.220600633914509e-06 0.0013769041651915312 7.832386892839727e-06']
['59852.23487270822 0.002562992759247915 6.600534143567098e-06 0.0011793645831571985 4.2192930351342e-06 4.171148958155129e-05 1.4922696508773646e-07 0.0011793645831571985 4.2192930351342e-06 0.0013836281760907165 7.833867799288357e-06']
['59852.235075335186 0.0025547218861364782 6.594673028659118e-06 0.00117827424729903 4.219195441944235e-06 4.16729268390051e-05 1.4922351343471533e-07 0.00117827424729903 4.219195441944235e-06 0.0013764476388374483 7.828877475873987e-06']
['59852.23527796215 0.002558529898931813 6.595845266725626e-06 0.0011828766143489524 4.220249652130338e-06 4.1835702275875855e-05 1.4926079849297668e-07 0.0011828766143489524 4.220249652130338e-06 0.0013756532845828607 7.83043306011188e-06']
['59852.23548058912 0.002554582284367905 6.596617906739807e-06 0.0011709361658965608 4.215055255529495e-06 4.14133952994465e-05 1.4907708429399803e-07 0.0011709361658965608 4.215055255529495e-06 0.0013836461184713444 7.828285803078929e-06']
['59852.23568321609 0.0025662271337666153 6.601858075771952e-06 0.0011671847630118281 4.213387167332384e-06 4.128071656330552e-05 1.4901808774242394e-07 0.0011671847630118281 4.213387167332384e-06 0.0013990423707547872 7.831804483928116e-06']
['59852.23588584305 0.002571864953011835 6.6062223839476324e-06 0.0011843204674695778 4.221469973959767e-06 4.1886768133930565e-05 1.4930395854882479e-07 0.0011843204674695778 4.221469973959767e-06 0.0013875444855422571 7.839833093071217e-06']
['59852.236088470025 0.0025686684026444964 6.602535000033277e-06 0.001177186132216869 4.217757909780118e-06 4.163444264034315e-05 1.491726711347658e-07 0.001177186132216869 4.217757909780118e-06 0.0013914822704276274 7.834727194496129e-06']
['59852.23629109699 0.0025640152374028836 6.600069425626392e-06 0.0011683235921056587 4.212058670280092e-06 4.132099440322108e-05 1.4897110177070052e-07 0.0011683235921056587 4.212058670280092e-06 0.0013956916452972248 7.829582023644045e-06']
['59852.23649372396 0.002560870905653668 6.598817021386353e-06 0.0011738599498518243 4.215910437693438e-06 4.151680300367161e-05 1.4910733017591706e-07 0.0011738599498518243 4.215910437693438e-06 0.0013870109558018439 7.830599395984367e-06']
['59852.23669635093 0.002569815486219555 6.60803494735657e-06 0.0011692383740138255 4.213594776609723e-06 4.1353348194895695e-05 1.4902543041858399e-07 0.0011692383740138255 4.213594776609723e-06 0.0014005771122057296 7.837123630960437e-06']
['59852.23689897789 0.0025583852519537186 6.595425399554332e-06 0.001174368696143456 4.216074390662555e-06 4.1534796223025574e-05 1.491131288260214e-07 0.001174368696143456 4.216074390662555e-06 0.0013840165558102625 7.827829805807421e-06']
['59852.237101604864 0.0025652430452131557 6.60170391566067e-06 0.0011763642035160769 4.218824232403822e-06 4.160537285909867e-05 1.4921038458287541e-07 0.0011763642035160769 4.218824232403822e-06 0.0013888788416970789 7.834600978605556e-06']
['59852.23730423183 0.0025615917455883 6.599236112967621e-06 0.0011795698748428474 4.2194034914326744e-06 4.1718750289672774e-05 1.4923087168015817e-07 0.0011795698748428474 4.2194034914326744e-06 0.0013820218707454527 7.832833656998611e-06']
['59852.23750685879 0.002569490939334787 6.606210150549175e-06 0.0011763211249579007 4.2172783065711e-06 4.160384926677089e-05 1.4915570864111293e-07 0.0011763211249579007 4.2172783065711e-06 0.0013931698143768861 7.837566514441467e-06']
['59852.237709485766 0.0025683090101210893 6.603136326298078e-06 0.0011820781671751488 4.2198521537464796e-06 4.1807462983762834e-05 1.4924673986349622e-07 0.0011820781671751488 4.2198521537464796e-06 0.0013862308429459405 7.83636149900935e-06']
['59852.23791211273 0.0025732744382234232 6.606359786195697e-06 0.001180469848472849 4.218923319607808e-06 4.1750580345643244e-05 1.4921388907583353e-07 0.001180469848472849 4.218923319607808e-06 0.0013928045897505742 7.838577906826863e-06']
['59852.238114739695 0.002567714996942383 6.60431695736117e-06 0.0011793034496965394 4.219023077659308e-06 4.170932742767302e-05 1.4921741729516894e-07 0.0011793034496965394 4.219023077659308e-06 0.0013884115472458435 7.83690999074955e-06']
['59852.23831736667 0.002563675606793902 6.600963692559174e-06 0.0011761218562686706 4.217280751582933e-06 4.159680157857213e-05 1.4915579511571718e-07 0.0011761218562686706 4.217280751582933e-06 0.0013875537505252315 7.833146150057227e-06']
['59852.23851999363 0.0025677939905521083 6.601619186463425e-06 0.0011734515857094012 4.215345121187236e-06 4.150236007659424e-05 1.4908733619450073e-07 0.0011734515857094012 4.215345121187236e-06 0.0013943424048427071 7.832656661299476e-06']
['59852.238722620605 0.0025671321101379987 6.602639367960999e-06 0.0011761290966835869 4.216792539707196e-06 4.159705765586634e-05 1.4913852815276168e-07 0.0011761290966835869 4.216792539707196e-06 0.0013910030134544119 7.834295497763579e-06']
['59852.23892524757 0.002556877640729347 6.598201424868618e-06 0.0011723858502788711 4.215975509315116e-06 4.1464667396194903e-05 1.4910963161374928e-07 0.0011723858502788711 4.215975509315116e-06 0.001384491790450476 7.83011567847392e-06']
['59852.239127874534 0.0025755626884733152 6.609146391912792e-06 0.001180251487352884 4.219459619843961e-06 4.174285740083846e-05 1.4923285681662577e-07 0.001180251487352884 4.219459619843961e-06 0.0013953112011204313 7.84121518090325e-06']
['59852.23933050151 0.0025626162256813354 6.599451979840159e-06 0.0011751726275440846 4.217424412895368e-06 4.156322947998487e-05 1.4916087609527386e-07 0.0011751726275440846 4.217424412895368e-06 0.0013874435981372508 7.83194963675725e-06']
['59852.23953312847 0.0025594498485923788 6.595701755392719e-06 0.001176090090074653 4.216082356256021e-06 4.159567807928299e-05 1.4911341055126024e-07 0.001176090090074653 4.216082356256021e-06 0.0013833597585177259 7.828066944068882e-06']
['59852.23973575544 0.002570042713311691 6.60509548707551e-06 0.0011773124516145318 4.217340894694182e-06 4.163891027513124e-05 1.4915792224315012e-07 0.0011773124516145318 4.217340894694182e-06 0.0013927302616971594 7.836660680126785e-06']
['59852.23993838241 0.002559649431225258 6.5978172025848e-06 0.0011792165369288999 4.218729748458485e-06 4.170625351732021e-05 1.4920704289688805e-07 0.0011792165369288999 4.218729748458485e-06 0.0013804328942963581 7.83127528115648e-06']
['59852.24014100937 0.0025635190783872574 6.603178803294333e-06 0.0011792203118608166 4.218686193927655e-06 4.1706387028225634e-05 1.4920550247047123e-07 0.0011792203118608166 4.218686193927655e-06 0.0013842987665264408 7.835769490682545e-06']
['59852.240343636346 0.002553131850777348 6.593301449360348e-06 0.0011782535801586342 4.218186885975065e-06 4.167219588843764e-05 1.491878430640757e-07 0.0011782535801586342 4.218186885975065e-06 0.0013748782706187138 7.827178585361986e-06']
['59852.24054626331 0.0025523402534190854 6.5961159154592e-06 0.0011769515177121501 4.219520960055949e-06 4.16261448496438e-05 1.4923502628283646e-07 0.0011769515177121501 4.219520960055949e-06 0.0013753887357069352 7.83026834166784e-06']
['59852.240748890275 0.0025629347919449183 6.601719214484711e-06 0.0011689693767735225 4.213955665262179e-06 4.134383436367963e-05 1.4903819424368267e-07 0.0011689693767735225 4.213955665262179e-06 0.0013939654151713958 7.831993292623012e-06']
['59852.24095151725 0.002560648029169033 6.6007333210297675e-06 0.0011729347089656115 4.216691550527385e-06 4.148407930131794e-05 1.4913495639116928e-07 0.0011729347089656115 4.216691550527385e-06 0.0013877133202034216 7.832634806222087e-06']
['59852.24115414421 0.002560691564387798 6.597857971644492e-06 0.001181627090141254 4.221689659583487e-06 4.179150939717182e-05 1.493117283383673e-07 0.001181627090141254 4.221689659583487e-06 0.001379064474246544 7.832904531259583e-06']
['59852.24135677118 0.002562268296950584 6.602071085467642e-06 0.0011748773701604246 4.217242269906651e-06 4.1552786886186233e-05 1.4915443410482859e-07 0.0011748773701604246 4.217242269906651e-06 0.0013873909267901592 7.834058653128358e-06']
['59852.24155939815 0.0025624083348598867 6.602932777823659e-06 0.001172970999690163 4.217306174468537e-06 4.1485362823140333e-05 1.491566942663642e-07 0.001172970999690163 4.217306174468537e-06 0.0013894373351697237 7.834819247287617e-06']
['59852.241762025114 0.0025576209541477717 6.596278303618013e-06 0.0011741888535014532 4.216994009919986e-06 4.152843559070258e-05 1.4914565370392865e-07 0.0011741888535014532 4.216994009919986e-06 0.0013834321006463185 7.829043743554048e-06']
['59852.24196465209 0.002559221735959462 6.598388108195331e-06 0.0011815885473154004 4.222375968968027e-06 4.179014622355952e-05 1.4933600156748728e-07 0.0011815885473154004 4.222375968968027e-06 0.0013776331886440618 7.833720983650889e-06']
['59852.24216727905 0.0025732331510163182 6.608394664373441e-06 0.0011766701350146875 4.217789655377045e-06 4.1616192972487866e-05 1.4917379390558188e-07 0.0011766701350146875 4.217789655377045e-06 0.0013965630160016308 7.839683004887696e-06']
['59852.24236990602 0.0025611859014953594 6.601088638688218e-06 0.001172656662502449 4.218074929819802e-06 4.147424541931315e-05 1.4918388342507133e-07 0.001172656662502449 4.218074929819802e-06 0.0013885292389929104 7.833679041765306e-06']
['59852.24257253299 0.002564862968547371 6.601325095482408e-06 0.0011769577064190745 4.21871801481204e-06 4.162636373037677e-05 1.4920662790403643e-07 0.0011769577064190745 4.21871801481204e-06 0.0013879052621282965 7.834224575843194e-06']
['59852.24277515995 0.002555717104478042 6.597998044942652e-06 0.001176897734171593 4.217957153552457e-06 4.162424264601344e-05 1.491797179417098e-07 0.001176897734171593 4.217957153552457e-06 0.001378819370306449 7.831011476831802e-06']
['59852.24297778692 0.002567371401345502 6.605434824865855e-06 0.0011818727414333108 4.221776238101007e-06 4.180019753437354e-05 1.493147904270404e-07 0.0011818727414333108 4.221776238101007e-06 0.0013854986599121913 7.839334399688848e-06']
['59852.24318041389 0.0025713208143293633 6.605281275958348e-06 0.0011835213876174513 4.221604752627705e-06 4.185850646539921e-05 1.4930872536909716e-07 0.0011835213876174513 4.221604752627705e-06 0.001387799426711912 7.839112668021476e-06']
['59852.243383040855 0.0025690102783710953 6.60615086595738e-06 0.0011727339530270447 4.2167783799046e-06 4.147697901243395e-05 1.4913802735218917e-07 0.0011727339530270447 4.2167783799046e-06 0.0013962763253440506 7.837247550576688e-06']
['59852.24358566783 0.0025689201648627326 6.607263788092603e-06 0.0011767051869301572 4.217891275760013e-06 4.161743268040161e-05 1.4917738799141926e-07 0.0011767051869301572 4.217891275760013e-06 0.0013922149779325753 7.838784445280546e-06']
['59852.24378829479 0.0025761879355383926 6.610516333419463e-06 0.0011823886901166307 4.221140411932666e-06 4.181844548622512e-05 1.49292302676454e-07 0.0011823886901166307 4.221140411932666e-06 0.001393799245421762 7.843274352695855e-06']
['59852.24399092176 0.0025567344571268435 6.596525713351357e-06 0.0011756118916921175 4.217547625638296e-06 4.15787652712032e-05 1.4916523385462697e-07 0.0011756118916921175 4.217547625638296e-06 0.001381122565434726 7.82955039969939e-06']
['59852.24419354873 0.00257075732250754 6.6065045934143425e-06 0.0011765345055567953 4.219277469830128e-06 4.161139606167622e-05 1.492264145777178e-07 0.0011765345055567953 4.219277469830128e-06 0.0013942228169507448 7.838890566286846e-06']
['59852.244396175694 0.002567085928206198 6.605550292352069e-06 0.0011785098080214905 4.219297006989616e-06 4.1681258095311293e-05 1.492271055633859e-07 0.0011785098080214905 4.219297006989616e-06 0.0013885761201847073 7.838096828821652e-06']
['59852.24459880266 0.0025652582518252373 6.6002328067831156e-06 0.0011753956424734831 4.2180856884311085e-06 4.157111701962866e-05 1.4918426393310917e-07 0.0011753956424734831 4.2180856884311085e-06 0.0013898626093517541 7.8329636778606e-06']
['59852.24480142963 0.0025629073243327184 6.599095371914853e-06 0.0011783382362927414 4.219122141998012e-06 4.1675189986705685e-05 1.4922092097943315e-07 0.0011783382362927414 4.219122141998012e-06 0.001384569088039977 7.832563525227608e-06']
['59852.2450040566 0.002564185191547347 6.604917398684079e-06 0.0011806297804221346 4.220454523924534e-06 4.1756236781262604e-05 1.4926804435047588e-07 0.0011806297804221346 4.220454523924534e-06 0.0013835554111252125 7.838186667332867e-06']
['59852.24520668356 0.002557762951902956 6.596693556420045e-06 0.0011659735461288085 4.213390615820495e-06 4.1237878529063535e-05 1.490182097077415e-07 0.0011659735461288085 4.213390615820495e-06 0.0013917894057741476 7.827453376341372e-06']
['59852.24540931053 0.002571946548271093 6.6077008191318356e-06 0.0011683338219648366 4.214008838978058e-06 4.1321356210477814e-05 1.4904007487917705e-07 0.0011683338219648366 4.214008838978058e-06 0.0014036127263062563 7.837064540383772e-06']
['59852.2456119375 0.00256040183718407 6.598004237187045e-06 0.0011800780605795724 4.220879135306783e-06 4.173672368345246e-05 1.4928306190611544e-07 0.0011800780605795724 4.220879135306783e-06 0.0013803237766044974 7.83259092438807e-06']
['59852.24581456447 0.0025611825501255844 6.599762771880139e-06 0.00117997052072125 4.220153545233394e-06 4.1732920239001035e-05 1.4925739940681806e-07 0.00117997052072125 4.220153545233394e-06 0.0013812120294043344 7.833681420024752e-06']
['59852.246017191435 0.0025654664660522833 6.603177121325463e-06 0.0011738061882420486 4.217254221776725e-06 4.1514901575683965e-05 1.4915485681576223e-07 0.0011738061882420486 4.217254221776725e-06 0.0013916602778102347 7.834997209105415e-06']
['59852.2462198184 0.0025654058040583934 6.601532677262055e-06 0.001173269808262548 4.21738354350634e-06 4.149593101454773e-05 1.4915943063632166e-07 0.001173269808262548 4.21738354350634e-06 0.0013921359957958454 7.833680976526732e-06']
['59852.24642244537 0.0025657469046968103 6.602691675208102e-06 0.0011717665990980343 4.217716163130481e-06 4.144276586587364e-05 1.4917119464906641e-07 0.0011717665990980343 4.217716163130481e-06 0.001393980305598776 7.834836755835725e-06']
['59852.24662507234 0.0025575199896389405 6.5951979028753274e-06 0.0011794087579431111 4.220348305089418e-06 4.1713051945004184e-05 1.4926428762766297e-07 0.0011794087579431111 4.220348305089418e-06 0.0013781112316958294 7.829940944500299e-06']
['59852.2468276993 0.002566332018633669 6.603996819157284e-06 0.001182536662097036 4.221118120592731e-06 4.182367892447414e-05 1.4929151428157876e-07 0.001182536662097036 4.221118120592731e-06 0.001383795356536633 7.837768316009082e-06']
['59852.247030326274 0.0025665735559344317 6.60342783075445e-06 0.0011779402560641063 4.219173096640297e-06 4.166111431545233e-05 1.4922272313125383e-07 0.0011779402560641063 4.219173096640297e-06 0.0013886332998703254 7.83624149292221e-06']
['59852.24723295324 0.002570556386343716 6.603299552386288e-06 0.0011757567355111763 4.219566099695088e-06 4.1583888073376425e-05 1.4923662277099168e-07 0.0011757567355111763 4.219566099695088e-06 0.0013947996508325397 7.836345005692447e-06']
['59852.24743558021 0.0025631248348713664 6.601405600192898e-06 0.0011708199192692612 4.216185500999171e-06 4.1409283916034837e-05 1.491170585503105e-07 0.0011708199192692612 4.216185500999171e-06 0.0013923049156021052 7.832928959022532e-06']
['59852.247638207176 0.002567522456630738 6.603477745763235e-06 0.0011768988380349771 4.217867422809726e-06 4.162428168719434e-05 1.4917654436587583e-07 0.0011768988380349771 4.217867422809726e-06 0.0013906236185957609 7.835580638037609e-06']
['59852.24784083414 0.0025682218948925297 6.60568369555679e-06 0.0011728359264176575 4.216002050794338e-06 4.148058558336281e-05 1.4911057032655263e-07 0.0011728359264176575 4.216002050794338e-06 0.0013953859684748722 7.836436076307066e-06']
['59852.24804346111 0.0025672503259555938 6.603009994424744e-06 0.0011772804854751461 4.2187112545830216e-06 4.163777970422129e-05 1.4920638880984425e-07 0.0011772804854751461 4.2187112545830216e-06 0.0013899698404804476 7.835640729131122e-06']
['59852.24824608808 0.002555998425506808 6.595881735027409e-06 0.0011789539676100313 4.219904286965465e-06 4.169696702731973e-05 1.4924858369894084e-07 0.0011789539676100313 4.219904286965465e-06 0.0013770444578967767 7.830277648565068e-06']
['59852.24844871504 0.0025718448264071617 6.606019892415476e-06 0.001178970214508024 4.219057076356832e-06 4.169754164379205e-05 1.4921861975311775e-07 0.001178970214508024 4.219057076356832e-06 0.0013928746118991376 7.838363440957917e-06']
['59852.248651342015 0.002567178531729834 6.604024107050371e-06 0.001181274826127432 4.221978941595144e-06 4.177905060626667e-05 1.4932195959661237e-07 0.001181274826127432 4.221978941595144e-06 0.001385903705602402 7.838254945443871e-06']
['59852.24885396898 0.0025757810989871515 6.609107172460327e-06 0.0011825665914625741 4.221653844331284e-06 4.182473745924503e-05 1.493104616329393e-07 0.0011825665914625741 4.221653844331284e-06 0.0013932145075245773 7.842363087642885e-06']
['59852.24905659595 0.00256656848198188 6.6046025458415955e-06 0.0011784189545040135 4.219062680265903e-06 4.167804480944379e-05 1.4921881795085762e-07 0.0011784189545040135 4.219062680265903e-06 0.0013881495274778667 7.837171982836014e-06']
['59852.24925922292 0.002563190190713261 6.600184406851028e-06 0.001178522114823701 4.219475023745209e-06 4.16816933594014e-05 1.4923340161818722e-07 0.001178522114823701 4.219475023745209e-06 0.00138466807588956 7.833671149623852e-06']
['59852.24946184988 0.002563003146165434 6.602455402012945e-06 0.0011828045057309235 4.221622813340438e-06 4.1833151955209447e-05 1.493093641361432e-07 0.0011828045057309235 4.221622813340438e-06 0.0013801986404345103 7.836741447418459e-06']
['59852.249664476854 0.0025609971262143616 6.60026424432714e-06 0.0011816877943903962 4.221229353264263e-06 4.179365637079796e-05 1.4929544833258042e-07 0.0011816877943903962 4.221229353264263e-06 0.0013793093318239654 7.834683487404142e-06']
['59852.24986710382 0.0025705480813960043 6.608110207643958e-06 0.0011714444197383014 4.2154979954591284e-06 4.143137110194838e-05 1.4909274301584366e-07 0.0011714444197383014 4.2154979954591284e-06 0.0013991036616577029 7.838210501516796e-06']
['59852.250069730784 0.002568688617450914 6.605962558669229e-06 0.001177219180772276 4.219416167556024e-06 4.163561149388872e-05 1.492313200063116e-07 0.001177219180772276 4.219416167556024e-06 0.0013914694366786381 7.838508411781726e-06']
['59852.250272357756 0.0025682174150693815 6.604589705341995e-06 0.0011763561340275522 4.218623982504333e-06 4.16050874593238e-05 1.4920330219146267e-07 0.0011763561340275522 4.218623982504333e-06 0.0013918612810418292 7.836925001661697e-06']
['59852.25047498472 0.0025635731739719414 6.602350149705693e-06 0.0011778472583855637 4.219368548578423e-06 4.165782519539985e-05 1.49229635829496e-07 0.0011778472583855637 4.219368548578423e-06 0.0013857259155863777 7.835438625121862e-06']
['59852.25067761169 0.0025693920892662643 6.604585465407637e-06 0.0011810414729945377 4.221212454937155e-06 4.1770797427469754e-05 1.4929485067651616e-07 0.0011810414729945377 4.221212454937155e-06 0.0013883506162717266 7.838315109740766e-06']
['59852.25088023866 0.0025679865120621453 6.604510938738465e-06 0.0011762677212499779 4.218540181071576e-06 4.160196049697192e-05 1.4920033832207125e-07 0.0011762677212499779 4.218540181071576e-06 0.0013917187908121674 7.836813510555897e-06']
['59852.25108286562 0.0025599067159253843 6.598227565609751e-06 0.0011785066423034172 4.220050031814174e-06 4.168114613093801e-05 1.4925373836851912e-07 0.0011785066423034172 4.220050031814174e-06 0.001381400073621967 7.832332301338292e-06']
['59852.251285492595 0.002566367712027113 6.604190352414281e-06 0.0011738272385222919 4.218048454282667e-06 4.1515646077051564e-05 1.491829470444922e-07 0.0011738272385222919 4.218048454282667e-06 0.0013925404735048211 7.836278643182506e-06']
['59852.25148811956 0.002569237386636844 6.6060209372054055e-06 0.0011765156706622082 4.2179304679285704e-06 4.1610729913548185e-05 1.491787741308318e-07 0.0011765156706622082 4.2179304679285704e-06 0.0013927217159746357 7.837757973749656e-06']
['59852.251690746525 0.0025741454811231642 6.60972949981802e-06 0.0011731418496505538 4.2183364165083645e-06 4.149140540441216e-05 1.4919313162485743e-07 0.0011731418496505538 4.2183364165083645e-06 0.0014010036314726104 7.841102357679385e-06']
['59852.2518933735 0.0025568340921227127 6.595893208072969e-06 0.0011766633555483845 4.218832610533919e-06 4.1615953197915944e-05 1.4921068089861294e-07 0.0011766633555483845 4.218832610533919e-06 0.0013801707365743282 7.829709816334674e-06']
['59852.25209600046 0.0025629495891965333 6.60200061772759e-06 0.001178146914028747 4.220436286257266e-06 4.1668423345808294e-05 1.4926739932494339e-07 0.001178146914028747 4.220436286257266e-06 0.0013848026751677863 7.835719150328992e-06']
['59852.25229862743 0.0025696139889079413 6.607366864678969e-06 0.0011764933866124717 4.217733569457575e-06 4.1609941776510924e-05 1.491718102719549e-07 0.0011764933866124717 4.217733569457575e-06 0.0013931206022954697 7.838786471603044e-06']
['59852.2525012544 0.0025627459854962657 6.602902748519478e-06 0.0011736368223459587 4.217729816986215e-06 4.150891148244977e-05 1.4917167755542915e-07 0.0011736368223459587 4.217729816986215e-06 0.001389109163150307 7.835021985642455e-06']
['59852.252703881364 0.0025753417251887087 6.612501294612631e-06 0.0011783405014667671 4.219397086480004e-06 4.167527010084861e-05 1.4923064515129645e-07 0.0011783405014667671 4.219397086480004e-06 0.0013970012237219415 7.844009506919892e-06']
['59852.252906508336 0.0025751657295035764 6.609730003301224e-06 0.0011784363106656492 4.219355453501999e-06 4.167865865809211e-05 1.4922917268590865e-07 0.0011784363106656492 4.219355453501999e-06 0.0013967294188379272 7.841651048059807e-06']
['59852.2531091353 0.0025693560674633757 6.605532905622754e-06 0.0011734522579224 4.217102793719326e-06 4.1502383851265704e-05 1.4914950114379382e-07 0.0011734522579224 4.217102793719326e-06 0.0013959038095409757 7.836901233272009e-06']
['59852.253311762266 0.002565223787747683 6.60248366289596e-06 0.0012699924193991354 4.277964884336021e-06 4.491679360813508e-05 1.5130205727013912e-07 0.0012699924193991354 4.277964884336021e-06 0.0012952313683485478 7.86725962902078e-06']
['59852.25351438924 0.0025650691314427344 6.603779132356526e-06 0.0011801793053578431 4.221431768655889e-06 4.174030448499113e-05 1.4930260731261048e-07 0.0011801793053578431 4.221431768655889e-06 0.0013848898260848913 7.837753824047083e-06']
['59852.2537170162 0.002559064280590174 6.598734916599462e-06 0.0011751824542963287 4.218647125291403e-06 4.1563577030250244e-05 1.4920412070012027e-07 0.0011751824542963287 4.218647125291403e-06 0.0013838818262938454 7.832003962414622e-06']
['59852.25391964317 0.0025621591811028853 6.60181471180837e-06 0.0011697285039297038 4.215457614853544e-06 4.137068299464442e-05 1.490913148440695e-07 0.0011697285039297038 4.215457614853544e-06 0.0013924306771731815 7.832881997813842e-06']
['59852.25412227014 0.0025691816775971774 6.6052757808159095e-06 0.001179921098092124 4.219807591637645e-06 4.173117227106193e-05 1.4924516380129716e-07 0.001179921098092124 4.219807591637645e-06 0.0013892605795050533 7.838140356683843e-06']
['59852.254324897105 0.0025688968219071177 6.60449276423011e-06 0.0011764812357324727 4.2187202413476376e-06 4.160951202704098e-05 1.492067066516245e-07 0.0011764812357324727 4.2187202413476376e-06 0.001392415586174645 7.83689512163613e-06']
['59852.25452752408 0.0025735876954376784 6.608008558523126e-06 0.0011822993779282123 4.220962100188795e-06 4.181528671372175e-05 1.492859961885766e-07 0.0011822993779282123 4.220962100188795e-06 0.001391288317509466 7.841064861404035e-06']
['59852.25473015104 0.0025716914694899704 6.605843345069268e-06 0.0011679163946960633 4.2142703105454e-06 4.130659274087634e-05 1.4904932254415938e-07 0.0011679163946960633 4.2142703105454e-06 0.001403775074793907 7.835639128363452e-06']
['59852.25493277801 0.0025573103366460536 6.596439944153879e-06 0.001176398277618848 4.218254446450443e-06 4.1606577983962545e-05 1.4919023252710105e-07 0.001176398277618848 4.218254446450443e-06 0.0013809120590272056 7.829858907530056e-06']
['59852.25513540498 0.0025531855818801893 6.596622301346746e-06 0.0011744131362376364 4.216840937764753e-06 4.153636796983897e-05 1.4914023988389417e-07 0.0011744131362376364 4.216840937764753e-06 0.001378772445642553 7.829251131560026e-06']
['59852.255338031944 0.002572257851808684 6.6077449899125254e-06 0.0011785444545896907 4.219638033255501e-06 4.168248346699801e-05 1.4923916690026145e-07 0.0011785444545896907 4.219638033255501e-06 0.0013937133972189934 7.840130036128893e-06']
['59852.25554065891 0.002568902666114346 6.604630705145071e-06 0.0011737687806070752 4.2160791523856845e-06 4.15135785512361e-05 1.4911329723752666e-07 0.0011737687806070752 4.2160791523856845e-06 0.0013951338855072708 7.83558996952535e-06']
['59852.25574328588 0.0025580027798668497 6.6012051105072115e-06 0.0011740868944399084 4.2184496371369e-06 4.1524829526560836e-05 1.4919713598545552e-07 0.0011740868944399084 4.2184496371369e-06 0.0013839158854269413 7.833978954021192e-06']
['59852.255945912846 0.002563629509074609 6.602965634179382e-06 0.0011792587992953355 4.220013403204891e-06 4.170774824277021e-05 1.492524428964689e-07 0.0011792587992953355 4.220013403204891e-06 0.0013843707097792733 7.83630450463628e-06']
['59852.25614853982 0.00256814764696412 6.606393392989347e-06 0.0011732519964689552 4.21627436773491e-06 4.149530105121537e-05 1.4912020156814813e-07 0.0011732519964689552 4.21627436773491e-06 0.0013948956504951648 7.837180820100536e-06']
['59852.25635116678 0.002566324796449916 6.603546657269245e-06 0.0011792966506015416 4.218826579379384e-06 4.170908695887803e-05 1.4921046759015583e-07 0.0011792966506015416 4.218826579379384e-06 0.0013870281458483744 7.836155062376558e-06']
['59852.25655379375 0.002565363531290001 6.601985652951988e-06 0.0011720981771041919 4.215242039513498e-06 4.1454493038918205e-05 1.490836904260746e-07 0.0011720981771041919 4.215242039513498e-06 0.001393265354185809 7.83291006034576e-06']
['59852.25675642072 0.0025776080288992115 6.6122685642570754e-06 0.0011737169190845274 4.21674400507597e-06 4.1511744325087265e-05 1.4913681159132373e-07 0.0011737169190845274 4.21674400507597e-06 0.001403891109814684 7.842386471617326e-06']
['59852.256959047685 0.0025643381267521255 6.603161842718312e-06 0.0011715521561888591 4.215945785402055e-06 4.143518149942781e-05 1.4910858034537337e-07 0.0011715521561888591 4.215945785402055e-06 0.0013927859705632664 7.834280131995564e-06']
['59852.25716167465 0.0025631457860364874 6.604458995950469e-06 0.0011803858917204574 4.220908681002843e-06 4.174761098294345e-05 1.4928410687135432e-07 0.0011803858917204574 4.220908681002843e-06 0.00138275989431603 7.838044955379895e-06']
['59852.25736430162 0.002576961576974403 6.611964125245561e-06 0.0011765524167518847 4.217497741523191e-06 4.161202954061736e-05 1.4916346956496013e-07 0.0011765524167518847 4.217497741523191e-06 0.0014004091602225184 7.842535099907906e-06']
['59852.25756692859 0.00255342519904425 6.591752354310654e-06 0.0011805632014745026 4.2197005633893955e-06 4.175388203268005e-05 1.4924137845135067e-07 0.0011805632014745026 4.2197005633893955e-06 0.0013728619975697475 7.82668971821605e-06']
['59852.25776955555 0.002556849036268987 6.597295650102594e-06 0.001177357536568128 4.218638805128086e-06 4.1640504829181e-05 1.4920382643453822e-07 0.001177357536568128 4.218638805128086e-06 0.0013794914997008589 7.830786886577564e-06']
['59852.257972182524 0.0025683415476475133 6.60733870785118e-06 0.0011746529352487413 4.217543854710837e-06 4.15448491249425e-05 1.4916510048535024e-07 0.0011746529352487413 4.217543854710837e-06 0.001393688612398772 7.838660661533808e-06']
['59852.25817480949 0.0025696216616680786 6.604929942052813e-06 0.001173962931478717 4.217209578708877e-06 4.152044523366441e-05 1.4915327789022383e-07 0.001173962931478717 4.217209578708877e-06 0.0013956587301893616 7.836450482851255e-06']
['59852.25837743646 0.002567604308880756 6.6024868604954915e-06 0.0011740060128431512 4.217815726543275e-06 4.1521968925243266e-05 1.4917471598446583e-07 0.0011740060128431512 4.217815726543275e-06 0.0013935982960376046 7.834717751526943e-06']
['59852.258580063426 0.002569112149989731 6.6070326036859665e-06 0.0011767028871115725 4.218374794470519e-06 4.161735134095806e-05 1.4919448896760915e-07 0.0011767028871115725 4.218374794470519e-06 0.0013924092628781583 7.83884977103105e-06']
['59852.25878269039 0.0025575361344577093 6.599672354160274e-06 0.0011733647906870485 4.217304419914397e-06 4.149929033062909e-05 1.4915663221170546e-07 0.0011733647906870485 4.217304419914397e-06 0.0013841713437706608 7.832070719324291e-06']
['59852.25898531736 0.0025636630733229097 6.602656547337622e-06 0.0011755365680027273 4.218876454722864e-06 4.157610124064801e-05 1.492122315695899e-07 0.0011755365680027273 4.218876454722864e-06 0.0013881265053201823 7.835431833812053e-06']
['59852.25918794433 0.0025622104243360534 6.600421755956049e-06 0.0011748511553873995 4.218587940325551e-06 4.15518597282509e-05 1.4920202746014867e-07 0.0011748511553873995 4.218587940325551e-06 0.0013873592689486538 7.833393362187176e-06']
['59852.25939057129 0.0025584141495725602 6.596195585532808e-06 0.0011780062355944984 4.2199292681088995e-06 4.1663447863986725e-05 1.4924946722615456e-07 0.0011780062355944984 4.2199292681088995e-06 0.0013804079139780618 7.830555486710035e-06']
['59852.259593198265 0.002566549471726302 6.601619536391374e-06 0.0011746823948292002 4.218560953538281e-06 4.154589104446504e-05 1.4920107299779484e-07 0.0011746823948292002 4.218560953538281e-06 0.001391867076897102 7.834388107694313e-06']
['59852.25979582523 0.0025761056533779468 6.6081895081131096e-06 0.001176937861254156 4.218297462276484e-06 4.1625661851244934e-05 1.491917539007334e-07 0.001176937861254156 4.218297462276484e-06 0.0013991677921237908 7.839783291353429e-06']
['59852.2599984522 0.002571720976971869 6.606965239189496e-06 0.0011713203197509549 4.215146464222343e-06 4.1426981962743085e-05 1.4908031014162465e-07 0.0011713203197509549 4.215146464222343e-06 0.001400400657220914 7.837056168403058e-06']
['59852.26020107917 0.0025756261858933508 6.6110208832403815e-06 0.0011765209674431318 4.218417576627464e-06 4.161091724885184e-05 1.491960020768878e-07 0.0011765209674431318 4.218417576627464e-06 0.001399105218450219 7.842234628563466e-06']
['59852.26040370613 0.002563388702707971 6.599812932261914e-06 0.001171554994517121 4.21586064780162e-06 4.143528188475515e-05 1.491055692187173e-07 0.001171554994517121 4.21586064780162e-06 0.00139183370819085 7.83141186137812e-06']
['59852.260606333104 0.002556091388284746 6.597702538021288e-06 0.001177627949405185 4.219711800470518e-06 4.165006872689058e-05 1.4924177588179657e-07 0.001177627949405185 4.219711800470518e-06 0.0013784634388795609 7.831707761353375e-06']
['59852.26080896007 0.002565219907811936 6.603604875262102e-06 0.0011771270159213999 4.218397738927754e-06 4.163235182908955e-05 1.4919530046178369e-07 0.0011771270159213999 4.218397738927754e-06 0.001388092891890536 7.835973253679226e-06']
['59852.261011587034 0.002563703021543809 6.602791512810125e-06 0.0011755666643159832 4.218326358529226e-06 4.157716567998656e-05 1.4919277589661358e-07 0.0011755666643159832 4.218326358529226e-06 0.0013881363572278258 7.835249391608404e-06']
['59852.261214214006 0.0025931830704513385 6.6299353528824094e-06 0.0011738805674445234 4.217666412669071e-06 4.1517532201847766e-05 1.4916943508643208e-07 0.0011738805674445234 4.217666412669071e-06 0.0014193025030068151 7.85778294126001e-06']
['59852.26141684097 0.0025654212945909528 6.600952071678428e-06 0.0011770288238542946 4.21727283612212e-06 4.162887899512239e-05 1.4915551516355823e-07 0.0011770288238542946 4.21727283612212e-06 0.0013883924707366582 7.833132095585343e-06']
['59852.26161946794 0.0025652794642470147 6.604396769532172e-06 0.0012118958509568603 4.237472459905893e-06 4.286204782052071e-05 1.4986993071328805e-07 0.0012118958509568603 4.237472459905893e-06 0.0013533836132901544 7.846924845942382e-06']
['59852.26182209491 0.0025691518756323826 6.6064704395753075e-06 0.0011802061900229334 4.220590667860356e-06 4.1741255335511685e-05 1.4927285945722212e-07 0.0011802061900229334 4.220590667860356e-06 0.0013889456856094491 7.839568690598499e-06']
['59852.26202472187 0.0025674574597069773 6.6042121162562306e-06 0.0011802330533444364 4.219868596254091e-06 4.1742205431157255e-05 1.492473213982436e-07 0.0011802330533444364 4.219868596254091e-06 0.0013872244063625409 7.837276864202073e-06']
['59852.262227348845 0.0025702463654197487 6.604370963881834e-06 0.0011736623160138113 4.216852330340365e-06 4.1509813136506714e-05 1.4914064281383267e-07 0.0011736623160138113 4.216852330340365e-06 0.0013965840494059374 7.835787095401612e-06']
['59852.26242997581 0.002570597558816919 6.60565641857149e-06 0.0011751437435933978 4.218298024005508e-06 4.1562207919200906e-05 1.491917737678336e-07 0.0011751437435933978 4.218298024005508e-06 0.0013954538152235211 7.837648559328461e-06']
['59852.262632602775 0.002550989485566845 6.593098115682475e-06 0.0011748373207885392 4.21735323513357e-06 4.155137042940772e-05 1.49158358696912e-07 0.0011748373207885392 4.21735323513357e-06 0.0013761521647783059 7.82655806040608e-06']
['59852.26283522975 0.0025631773536197535 6.6033451231337425e-06 0.0011767277980859634 4.217332798547821e-06 4.1618232386449514e-05 1.4915763590054716e-07 0.0011767277980859634 4.217332798547821e-06 0.00138644955553379 7.83518109228634e-06']
['59852.26303785671 0.0025586978961232385 6.599330321218158e-06 0.0011717534395911326 4.216807427284352e-06 4.1442300443524294e-05 1.4913905469309393e-07 0.0011717534395911326 4.216807427284352e-06 0.001386944456532106 7.83151489606895e-06']
['59852.263240483684 0.002577324891196629 6.610580972538583e-06 0.0011786120571794067 4.218295743862758e-06 4.168487441951337e-05 1.4919169312428035e-07 0.0011786120571794067 4.218295743862758e-06 0.0013987128340172221 7.841798248946464e-06']
['59852.26344311065 0.002561664149771835 6.599868224794641e-06 0.0011753153120396406 4.218270003273595e-06 4.15682759117116e-05 1.4919078273716847e-07 0.0011753153120396406 4.218270003273595e-06 0.0013863488377321945 7.832755735063604e-06']
['59852.263645737614 0.002557174595666459 6.596728860717375e-06 0.0011743709940961143 4.217839595580549e-06 4.153487749647548e-05 1.4917556017897002e-07 0.0011743709940961143 4.217839595580549e-06 0.0013828036015703447 7.829878831493412e-06']
['59852.263848364586 0.0025657515372926446 6.601963515740665e-06 0.001176467768077486 4.218403702679198e-06 4.160903570618254e-05 1.4919551138634407e-07 0.001176467768077486 4.218403702679198e-06 0.0013892837692151586 7.834593292695442e-06']
['59852.26405099155 0.002571360701451718 6.607983442578639e-06 0.0011774659522996091 4.218925781788965e-06 4.164433925130859e-05 1.492139761576784e-07 0.0011774659522996091 4.218925781788965e-06 0.0013938947491521087 7.839947699419753e-06']
['59852.264253618516 0.0025586295925221444 6.596863054835843e-06 0.0011764191165642664 4.218454174497264e-06 4.160731501088969e-05 1.491972964617512e-07 0.0011764191165642664 4.218454174497264e-06 0.001382210475957878 7.830322968217306e-06']
['59852.26445624549 0.0025582562583352725 6.598810527622315e-06 0.0011756663334488203 4.217114483031186e-06 4.1580690754467614e-05 1.4914991456863023e-07 0.0011756663334488203 4.217114483031186e-06 0.0013825899248864522 7.831242234949095e-06']
['59852.26465887245 0.002567876654856079 6.605029843100098e-06 0.0011822825740036647 4.221733434000746e-06 4.181469239646506e-05 1.493132765416757e-07 0.0011822825740036647 4.221733434000746e-06 0.0013855940808524141 7.838970111947273e-06']
['59852.26486149942 0.002561687662902686 6.600119079244762e-06 0.0011790896304635016 4.218652789109879e-06 4.1701765119258335e-05 1.4920432101672188e-07 0.0011790896304635016 4.218652789109879e-06 0.0013825980324391842 7.833173253240048e-06']
['59852.26506412639 0.0025669903221395723 6.60563830292422e-06 0.0011812825845518961 4.221027048949354e-06 4.17793250044009e-05 1.4928829328108564e-07 0.0011812825845518961 4.221027048949354e-06 0.0013857077375876762 7.839102419092485e-06']
['59852.265266753355 0.0025681651820308204 6.602534064304215e-06 0.0011815076783793562 4.221784501956296e-06 4.178728607002307e-05 1.4931508270113334e-07 0.0011815076783793562 4.221784501956296e-06 0.0013866575036514642 7.836894822010559e-06']
['59852.26546938033 0.002570292301162664 6.607393651069781e-06 0.0011820739400520174 4.222307519469973e-06 4.180731347986474e-05 1.4933358066171674e-07 0.0011820739400520174 4.222307519469973e-06 0.0013882183611106465 7.841271048061655e-06']
['59852.26567200729 0.002563562071879641 6.6051716977414105e-06 0.001178522037466366 4.219271545643975e-06 4.168169062344534e-05 1.4922620505249335e-07 0.001178522037466366 4.219271545643975e-06 0.0013850400344132749 7.837764064612117e-06']
['59852.26587463426 0.0025803419942619405 6.610135579266052e-06 0.0011765344968308479 4.217666118192441e-06 4.161139575305896e-05 1.491694246714518e-07 0.0011765344968308479 4.217666118192441e-06 0.0014038074974310926 7.841084099844066e-06']
['59852.26607726123 0.0025725710412215384 6.6086328996252e-06 0.0011853922231613648 4.223176084136839e-06 4.192467373751607e-05 1.49364299852856e-07 0.0011853922231613648 4.223176084136839e-06 0.0013871788180601736 7.842782990726821e-06']
['59852.266279888194 0.0025745100994758615 6.608519086273403e-06 0.0011821774625184478 4.2210074936291895e-06 4.181097483814329e-05 1.4928760165311499e-07 0.0011821774625184478 4.2210074936291895e-06 0.0013923326369574137 7.841519545018913e-06']
['59852.26648251516 0.0025716466007463497 6.6074011176933e-06 0.0011773861855173204 4.218775424894687e-06 4.16415180784873e-05 1.4920865837035565e-07 0.0011773861855173204 4.218775424894687e-06 0.0013942604152290294 7.83937597107002e-06']
['59852.26668514213 0.002567073906546114 6.602599847024634e-06 0.0011791906188630499 4.218843610489387e-06 4.170533685325457e-05 1.4921106994245434e-07 0.0011791906188630499 4.218843610489387e-06 0.001387883287683064 7.835366369844925e-06']
['59852.266887769096 0.0025644629925400605 6.6031363619315825e-06 0.0011789019248313588 4.220018307470044e-06 4.1695126390546846e-05 1.4925261634936697e-07 0.0011789019248313588 4.220018307470044e-06 0.0013855610677087017 7.83645100346103e-06']
['59852.26709039607 0.0025643493265212246 6.602706511658403e-06 0.001181649428280923 4.2206770021133376e-06 4.1792299447249104e-05 1.4927591290680437e-07 0.001181649428280923 4.2206770021133376e-06 0.0013826998982403016 7.83644355784336e-06']
['59852.26729302303 0.0025558593240206625 6.597295169985171e-06 0.0011784990662943196 4.220267072126066e-06 4.168087818442761e-05 1.4926141459929418e-07 0.0011784990662943196 4.220267072126066e-06 0.0013773602577263429 7.831663790024517e-06']
['59852.26749565 0.002571565283068786 6.606688504877959e-06 0.0011826167269694847 4.221199499176296e-06 4.182651064007819e-05 1.49294392460209e-07 0.0011826167269694847 4.221199499176296e-06 0.0013889485560993012 7.840080242722824e-06']
['59852.26769827697 0.002572758915901846 6.60718775476579e-06 0.0011730673739355807 4.217156139411968e-06 4.148877136481699e-05 1.4915138786172197e-07 0.0011730673739355807 4.217156139411968e-06 0.0013996915419662655 7.838324816624217e-06']
['59852.267900903935 0.002554360572043931 6.5956608280176285e-06 0.0011794170471469449 4.2188727021271064e-06 4.17133451156185e-05 1.4921209884866453e-07 0.0011794170471469449 4.2188727021271064e-06 0.0013749435248969863 7.829535658964678e-06']
['59852.2681035309 0.0025624853066394016 6.600880627562388e-06 0.0011835591548488714 4.2213974568506625e-06 4.1859842207969747e-05 1.4930139378074197e-07 0.0011835591548488714 4.2213974568506625e-06 0.0013789261517905302 7.835293328780594e-06']
['59852.26830615787 0.0025605426665730124 6.6005799344289775e-06 0.0011785200627303146 4.21924756926283e-06 4.1681620781444475e-05 1.4922535706147634e-07 0.0011785200627303146 4.21924756926283e-06 0.0013820226038426977 7.833881893513378e-06']
['59852.26850878484 0.0025779436597876022 6.612324644779231e-06 0.0011765872379408675 4.218134590842744e-06 4.161326108825091e-05 1.4918599350211827e-07 0.0011765872379408675 4.218134590842744e-06 0.0014013564218467347 7.84318153777017e-06']
['59852.26871141181 0.0025650999653234366 6.6022865950067645e-06 0.001181365496892612 4.220432746514711e-06 4.178225742859386e-05 1.4926727413216009e-07 0.001181365496892612 4.220432746514711e-06 0.0013837344684308245 7.835958196063818e-06']
['59852.268914038774 0.0025720410445547286 6.607197540817411e-06 0.0011829114021902718 4.222560225092679e-06 4.183693264407707e-05 1.4934251829482802e-07 0.0011829114021902718 4.222560225092679e-06 0.0013891296423644568 7.841241878549492e-06']
['59852.26911666574 0.002557877060773323 6.597851315983111e-06 0.001177526151548327 4.218729290989497e-06 4.164646836419834e-05 1.492070267172323e-07 0.001177526151548327 4.218729290989497e-06 0.001380350909224996 7.831303775136859e-06']
['59852.26931929271 0.0025580327918949372 6.598920553400367e-06 0.0011737603440939031 4.215924130603513e-06 4.15132801706197e-05 1.4910781446354455e-07 0.0011737603440939031 4.215924130603513e-06 0.001384272447801034 7.830694014268134e-06']
['59852.269521919676 0.0025595133805971838 6.59915935623266e-06 0.001174644114402718 4.217198917927353e-06 4.154453715133209e-05 1.4915290084220679e-07 0.001174644114402718 4.217198917927353e-06 0.0013848692661944657 7.831581636063094e-06']
['59852.26972454664 0.0025639038500273525 6.60030113987639e-06 0.0011756210595353037 4.218820485089391e-06 4.157908951732777e-05 1.4921025204873874e-07 0.0011756210595353037 4.218820485089391e-06 0.0013882827904920488 7.833416969781671e-06']
['59852.26992717361 0.002573786903891644 6.609871032745929e-06 0.001175121836143196 4.218287791599396e-06 4.156143310164754e-05 1.4919141187049752e-07 0.001175121836143196 4.218287791599396e-06 0.001398665067748448 7.841195505934682e-06']
['59852.27012980058 0.002562840029549003 6.6017943226700916e-06 0.0011828255372950739 4.219518520391771e-06 4.183389579463067e-05 1.4923493999736683e-07 0.0011828255372950739 4.219518520391771e-06 0.001380014492253929 7.835051041490936e-06']
['59852.27033242755 0.002571712018800726 6.609451773165575e-06 0.0011800116271233002 4.220730314014298e-06 4.173437408057415e-05 1.4927779842959624e-07 0.0011800116271233002 4.220730314014298e-06 0.0013917003916774258 7.842156407866448e-06']
['59852.270535054515 0.0025470213079835462 6.590975258900256e-06 0.001172444444333575 4.2180506394638485e-06 4.1466739736959776e-05 1.4918302432946702e-07 0.001172444444333575 4.2180506394638485e-06 0.0013745768636499712 7.825145753308156e-06']
['59852.27073768148 0.002586592807669624 6.617612080266511e-06 0.0011841483384690294 4.221958545113091e-06 4.1880680315866845e-05 1.4932123821862562e-07 0.0011841483384690294 4.221958545113091e-06 0.0014024444692005945 7.849695764903421e-06']
['59852.27094030845 0.00256830906941812 6.602859151264587e-06 0.0011750223366980169 4.217301089864595e-06 4.1557914028639724e-05 1.4915651443528618e-07 0.0011750223366980169 4.217301089864595e-06 0.0013932867327201032 7.834754460352386e-06']
['59852.27114293542 0.0025644117039614386 6.6023139010918605e-06 0.001178963347669868 4.220239615346278e-06 4.169729877907295e-05 1.4926044351435538e-07 0.001178963347669868 4.220239615346278e-06 0.0013854483562915705 7.835877185069258e-06']
['59852.27134556238 0.00257379194237644 6.608237817372372e-06 0.0011740780663177042 4.215666468767831e-06 4.152451729560816e-05 1.4909870154025678e-07 0.0011740780663177042 4.215666468767831e-06 0.0013997138760587359 7.838408692256598e-06']
['59852.271548189354 0.0025757069039026304 6.610807574171383e-06 0.001176611158716851 4.218498323481544e-06 4.161410711263766e-05 1.4919885791265799e-07 0.001176611158716851 4.218498323481544e-06 0.0013990957451857793 7.842098245236305e-06']
['59852.27175081632 0.0025506943082939364 6.592791897201383e-06 0.001178846759428423 4.220653690933681e-06 4.1693175313532424e-05 1.4927508844247733e-07 0.001178846759428423 4.220653690933681e-06 0.0013718475488655134 7.828079111672053e-06']
['59852.27195344328 0.0025650161272607 6.601365260115073e-06 0.0011745370528976644 4.217102536863359e-06 4.154075062516672e-05 1.4914949205937232e-07 0.0011745370528976644 4.217102536863359e-06 0.0013904790743630357 7.833388609272077e-06']
['59852.272156070256 0.002565195971274485 6.604018625608427e-06 0.0011785376542140502 4.219196085950644e-06 4.168224295290955e-05 1.4922353621178275e-07 0.0011785376542140502 4.219196085950644e-06 0.0013866583170604348 7.836751726262881e-06']
['59852.27235869722 0.0025710686512981124 6.609014247059657e-06 0.0011806121640472666 4.2200033123564725e-06 4.17556137294538e-05 1.4925208600571206e-07 0.0011806121640472666 4.2200033123564725e-06 0.0013904564872508458 7.84139638547479e-06']
['59852.27256132419 0.002572252647298809 6.605109935645126e-06 0.0011728493517643693 4.216103309939235e-06 4.1481060407872116e-05 1.491141516362068e-07 0.0011728493517643693 4.216103309939235e-06 0.0013994032955344396 7.836006915645146e-06']
['59852.27276395116 0.002573928406060094 6.607837504538206e-06 0.0011753706532305261 4.216800961673554e-06 4.1570233205952945e-05 1.491388260188898e-07 0.0011753706532305261 4.216800961673554e-06 0.001398557752829568 7.838681447587517e-06']
['59852.27296657812 0.002568346193985761 6.6051835079454144e-06 0.0011761608603054693 4.2179597155070074e-06 4.159818106418481e-05 1.4917980855231663e-07 0.0011761608603054693 4.2179597155070074e-06 0.0013921853336802917 7.837067904214818e-06']
['59852.273169205095 0.0025651708350004437 6.604883594094927e-06 0.0011769521892251616 4.217988661321029e-06 4.1626168599558276e-05 1.4918083230106848e-07 0.0011769521892251616 4.217988661321029e-06 0.001388218645775282 7.836830713915995e-06']
['59852.27337183206 0.0025577702988416975 6.595911848457104e-06 0.0011783890812464017 4.219798413932114e-06 4.167698825908487e-05 1.4924483920636352e-07 0.0011783890812464017 4.219798413932114e-06 0.0013793812175952958 7.8302459582596e-06']
['59852.273574459025 0.002559816888428896 6.596965330557635e-06 0.0011751301518132366 4.218510466945895e-06 4.1561727208312445e-05 1.4919928739985307e-07 0.0011751301518132366 4.218510466945895e-06 0.0013846867366156593 7.830439459718176e-06']
['59852.273777086 0.0025703721125937755 6.605550041204986e-06 0.0011731340665743694 4.216511052385923e-06 4.1491130134401674e-05 1.491285725752954e-07 0.0011731340665743694 4.216511052385923e-06 0.001397238046019406 7.836597271887578e-06']
['59852.27397971296 0.0025647300624381626 6.599744814628209e-06 0.0011748030372136732 4.2170064656646435e-06 4.1550157895983994e-05 1.4914609423578022e-07 0.0011748030372136732 4.2170064656646435e-06 0.0013899270252244894 7.831971345049043e-06']
['59852.274182339934 0.002548159160513524 6.589031957448592e-06 0.0011730543262651965 4.216484716761716e-06 4.1488309897875326e-05 1.4912764114312385e-07 0.0011730543262651965 4.216484716761716e-06 0.0013751048342483274 7.82266485943019e-06']
['59852.2743849669 0.002561582014315298 6.5997850169818016e-06 0.001179191149043544 4.220617704870259e-06 4.170535560455376e-05 1.4927381569583824e-07 0.001179191149043544 4.220617704870259e-06 0.0013823908652717538 7.8339502220171e-06']
['59852.27458759386 0.0025662733808678334 6.60366592917598e-06 0.0011781252443883183 4.219338315678546e-06 4.166765693905513e-05 1.492285665593939e-07 0.0011781252443883183 4.219338315678546e-06 0.001388148136479515 7.836531090113325e-06']
['59852.274790220836 0.002570352669133918 6.605437786132761e-06 0.001183784816685234 4.222493518175488e-06 4.186782336279737e-05 1.4934015902024814e-07 0.001183784816685234 4.222493518175488e-06 0.0013865678524486841 7.839723200311634e-06']
['59852.2749928478 0.0025670140665531244 6.602527228391171e-06 0.0011763090485729382 4.2173934151393666e-06 4.16034221520239e-05 1.4915977977392001e-07 0.0011763090485729382 4.2173934151393666e-06 0.0013907050179801862 7.834524428432634e-06']
['59852.275195474765 0.002570625026214558 6.604059564269477e-06 0.0011759371858040206 4.218927235512209e-06 4.159027019695166e-05 1.4921402757262066e-07 0.0011759371858040206 4.218927235512209e-06 0.0013946878404105373 7.836641483886183e-06']
['59852.27539810174 0.0025673775360517672 6.601122408745746e-06 0.0011751810197499523 4.217153947141835e-06 4.156352629355093e-05 1.491513103260268e-07 0.0011751810197499523 4.217153947141835e-06 0.001392196516301815 7.833211631836536e-06']
['59852.2756007287 0.0025682273483641485 6.60250681958777e-06 0.001175990480389205 4.2186166423076845e-06 4.1592155107323243e-05 1.4920304258511158e-07 0.001175990480389205 4.2186166423076845e-06 0.0013922368679749435 7.835165772174727e-06']
['59852.275803355675 0.0025683188850906718 6.607005737150948e-06 0.001175964068951465 4.217492847236223e-06 4.1591220993796466e-05 1.4916329646496816e-07 0.001175964068951465 4.217492847236223e-06 0.0013923548161392067 7.838352551858983e-06']
['59852.27600598264 0.0025633806800277508 6.6013197490253875e-06 0.00117817538541445 4.218651063129353e-06 4.166943031509081e-05 1.49204259972648e-07 0.00117817538541445 4.218651063129353e-06 0.0013852052946133008 7.834184017580582e-06']
['59852.276208609605 0.002577391937134792 6.609032953121377e-06 0.0011780636922782966 4.219446441991399e-06 4.166547997848453e-05 1.492323907454314e-07 0.0011780636922782966 4.219446441991399e-06 0.0013993282448564956 7.841112475425802e-06']
['59852.27641123658 0.0025650000671896063 6.600495407968719e-06 0.001180933230225653 4.21934360136547e-06 4.1766969122642656e-05 1.4922875350232757e-07 0.001180933230225653 4.21934360136547e-06 0.0013840668369639532 7.83386239711931e-06']
['59852.27661386354 0.0025642645192411684 6.604663690618824e-06 0.0011762814461372317 4.217870648877086e-06 4.160244591556077e-05 1.491766584646685e-07 0.0011762814461372317 4.217870648877086e-06 0.0013879830731039367 7.836581861809234e-06']
['59852.27681649051 0.0025703974966769516 6.607330890757505e-06 0.001176115670640443 4.219028489380015e-06 4.1596582806725785e-05 1.4921760869563585e-07 0.001176115670640443 4.219028489380015e-06 0.0013942818260365085 7.839452971614701e-06']
['59852.27701911748 0.0025735342427125134 6.609794117235872e-06 0.001178440608893991 4.219086923578712e-06 4.167881067682258e-05 1.4921967538265102e-07 0.001178440608893991 4.219086923578712e-06 0.0013950936338185224 7.841560606216012e-06']
['59852.27722174444 0.0025594936916972714 6.599049182242519e-06 0.0011732977646063483 4.2176772966612304e-06 4.14969197679492e-05 1.4916982002891047e-07 0.0011732977646063483 4.2176772966612304e-06 0.0013861959270909231 7.831746413695175e-06']
['59852.27742437141 0.002559700026044865 6.597387962495454e-06 0.0011708862792087985 4.215546221129395e-06 4.141163091879053e-05 1.4909444865002297e-07 0.0011708862792087985 4.215546221129395e-06 0.0013888137468360663 7.82919905674637e-06']
['59852.27762699838 0.0025704355229705443 6.606042892804186e-06 0.0011803750377046979 4.2197189665878265e-06 4.174722710066333e-05 1.4924202933135043e-07 0.0011803750377046979 4.2197189665878265e-06 0.0013900604852658464 7.838739111524871e-06']
['59852.277829625345 0.0025606664453692776 6.599666687449323e-06 0.0011779255658289185 4.219325501134085e-06 4.1660594754664474e-05 1.4922811333759512e-07 0.0011779255658289185 4.219325501134085e-06 0.001382740879540359 7.833154413768997e-06']
['59852.27803225232 0.002569455275350818 6.608120797999631e-06 0.0011820511067847015 4.2208310190799416e-06 4.180650591822912e-05 1.492813601427055e-07 0.0011820511067847015 4.2208310190799416e-06 0.0013874041685661166 7.841088889470818e-06']
['59852.27823487928 0.0025695883526218816 6.6061742652727045e-06 0.0011763491186365322 4.217661096395538e-06 4.160483934062189e-05 1.491692470617184e-07 0.0011763491186365322 4.217661096395538e-06 0.0013932392339853494 7.837742248071174e-06']
['59852.27843750625 0.0025717471360777295 6.607074969671243e-06 0.001180544950909215 4.221037871815879e-06 4.175323655097344e-05 1.4928867606168694e-07 0.001180544950909215 4.221037871815879e-06 0.0013912021851685144 7.8403188946726e-06']
['59852.27864013322 0.002564536359348353 6.6015104055685274e-06 0.001178580697070331 4.219443352952689e-06 4.168376528254108e-05 1.4923228149303584e-07 0.001178580697070331 4.219443352952689e-06 0.0013859556622780218 7.834771333204702e-06']
['59852.278842760184 0.002562173404862294 6.598215754754496e-06 0.001175859275188316 4.217558670338778e-06 4.158751467259416e-05 1.4916562448099956e-07 0.001175859275188316 4.217558670338778e-06 0.001386314129673978 7.830980288829762e-06']
['59852.27904538715 0.002559620631673836 6.599420181651807e-06 0.0011676635855881281 4.2139297197384725e-06 4.1297651447723776e-05 1.4903727660849403e-07 0.0011676635855881281 4.2139297197384725e-06 0.0013919570460857078 7.830041533535332e-06']
['59852.27924801412 0.0025677626963611427 6.602564679776094e-06 0.0011805161537081622 4.219560479893733e-06 4.1752218058330164e-05 1.4923642401117726e-07 0.0011805161537081622 4.219560479893733e-06 0.0013872465426529805 7.835722748675314e-06']
['59852.27945064109 0.0025737138526986192 6.60911108229687e-06 0.0011739451220200588 4.2166698560891e-06 4.151981535291346e-05 1.491341891073714e-07 0.0011739451220200588 4.2166698560891e-06 0.0013997687306785604 7.839684558283564e-06']
['59852.27965326806 0.0025630362182246388 6.6012740171800876e-06 0.0011733081292561078 4.217611139492078e-06 4.149728634244756e-05 1.491674801976901e-07 0.0011733081292561078 4.217611139492078e-06 0.001389728088968531 7.833585537534176e-06']
['59852.27985589502 0.002640891619364846 6.667654529265484e-06 0.0011769446457601653 4.219857746742956e-06 4.1625901804060005e-05 1.4924693767528198e-07 0.0011769446457601653 4.219857746742956e-06 0.0014639469736046809 7.890805809572369e-06']
['59852.28005852199 0.0025655255143623833 6.60121356796058e-06 0.0011761047409436347 4.2178490977847025e-06 4.1596196247776106e-05 1.4917589625069476e-07 0.0011761047409436347 4.2178490977847025e-06 0.0013894207734187487 7.833662718135756e-06']
['59852.28026114896 0.002559117003406842 6.598453747194842e-06 0.001177314271661045 4.21891801088349e-06 4.163897464610885e-05 1.492137013181187e-07 0.001177314271661045 4.21891801088349e-06 0.001381802731745797 7.831912987031122e-06']
['59852.280463775925 0.002558836303031951 6.59763914780581e-06 0.0011797577325603698 4.219336366977632e-06 4.1725394397304255e-05 1.4922849763819766e-07 0.0011797577325603698 4.219336366977632e-06 0.0013790785704715814 7.831452081342244e-06']
['59852.28066640289 0.002563980959318533 6.602175509178284e-06 0.0011798711161873793 4.220462803872196e-06 4.1729404522794087e-05 1.492683371937201e-07 0.0011798711161873793 4.220462803872196e-06 0.0013841098431311538 7.835880788581607e-06']
['59852.28086902986 0.002560151210480263 6.598336146590353e-06 0.0011747453698758793 4.217230914803557e-06 4.1548118331125134e-05 1.491540325002093e-07 0.0011747453698758793 4.217230914803557e-06 0.0013854058406043838 7.830905215374253e-06']
['59852.28107165683 0.002565301154334983 6.602169662456701e-06 0.0011870172922823494 4.223127261443705e-06 4.198214880050956e-05 1.4936257310331213e-07 0.0011870172922823494 4.223127261443705e-06 0.0013782838620526336 7.837311281186465e-06']
['59852.2812742838 0.002563526942891343 6.601546935721381e-06 0.0011763792193615879 4.219145147139524e-06 4.160590393599595e-05 1.4922173461987496e-07 0.0011763792193615879 4.219145147139524e-06 0.0013871477235297552 7.834641518101727e-06']
['59852.281476910764 0.002572535490825158 6.606696629849336e-06 0.0011794747386169656 4.2192113599710915e-06 4.1715385533980286e-05 1.4922407641975054e-07 0.0011794747386169656 4.2192113599710915e-06 0.0013930607522081922 7.839016829869144e-06']
['59852.28167953773 0.0025575512614408017 6.599644336267046e-06 0.0011694441650805145 4.215181564182885e-06 4.1360626565008526e-05 1.490815515487852e-07 0.0011694441650805145 4.215181564182885e-06 0.0013881070963602871 7.8309042251996e-06']
['59852.2818821647 0.002556605617780586 6.596887846266443e-06 0.0011675076040701937 4.215727474713237e-06 4.1292134730032615e-05 1.4910085918420552e-07 0.0011675076040701937 4.215727474713237e-06 0.001389098013710392 7.82887523193913e-06']
['59852.28208479167 0.0025645834087851625 6.600447830638455e-06 0.0011786334671702431 4.2191128951706296e-06 4.168563164304074e-05 1.4922059393981407e-07 0.0011786334671702431 4.2191128951706296e-06 0.0013859499416149193 7.833698053102058e-06']
['59852.28228741863 0.0025650478528483033 6.602205806665684e-06 0.0011759078071017293 4.21796385803171e-06 4.158923113790915e-05 1.4917995506415736e-07 0.0011759078071017293 4.21796385803171e-06 0.001389140045746574 7.834560652725322e-06']
['59852.2824900456 0.0025527806208843237 6.598280758857931e-06 0.0011762616284275058 4.217455751823037e-06 4.160174500745774e-05 1.4916198448310716e-07 0.0011762616284275058 4.217455751823037e-06 0.0013765189924568179 7.830979631648904e-06']
['59852.28269267257 0.002573870460579722 6.61092840241911e-06 0.001172547151457877 4.216798161021497e-06 4.147037225840942e-05 1.4913872696608563e-07 0.001172547151457877 4.216798161021497e-06 0.0014013233091218452 7.841285677279331e-06']
['59852.28289529954 0.0025589413767313314 6.599751490355102e-06 0.0011725421548063975 4.215695785855395e-06 4.147019553801345e-05 1.490997384201241e-07 0.0011725421548063975 4.215695785855395e-06 0.001386399221924934 7.831271333144021e-06']
['59852.283097926505 0.0025678414148751147 6.606618357352139e-06 0.00117999251997561 4.2209075214739736e-06 4.173369830346231e-05 1.492840658614096e-07 0.00117999251997561 4.2209075214739736e-06 0.0013878488948995047 7.839863928955517e-06']
['59852.28330055347 0.002557084724095061 6.597354445724966e-06 0.0011797567625129709 4.221488259881378e-06 4.1725360088895684e-05 1.4930460528100553e-07 0.0011797567625129709 4.221488259881378e-06 0.0013773279615820902 7.832371850904634e-06']
['59852.28350318044 0.002568150031877651 6.603524056776461e-06 0.0011850763105752198 4.222249483252863e-06 4.19135006153672e-05 1.4933152805042087e-07 0.0011850763105752198 4.222249483252863e-06 0.0013830737213024313 7.837979374000325e-06']
['59852.28370580741 0.002547332807733627 6.590540831362599e-06 0.0011665033519297513 4.213746461347668e-06 4.1256616576196606e-05 1.4903079516876965e-07 0.0011665033519297513 4.213746461347668e-06 0.0013808294558038758 7.822460462691877e-06']
['59852.28390843437 0.002560952935789635 6.554481463524407e-06 0.001173618961333597 4.18347130000812e-06 4.150827977835954e-05 1.4796003037319328e-07 0.001173618961333597 4.18347130000812e-06 0.0013873339744560381 7.775773876192433e-06']
['59852.284111061344 0.0025659209847782513 6.556450848408919e-06 0.0011765983329576702 4.185034164067951e-06 4.1613653494199316e-05 1.480153053821939e-07 0.0011765983329576702 4.185034164067951e-06 0.0013893226518205811 7.778274788281651e-06']
['59852.28431368831 0.0025660497298888242 6.554569466112605e-06 0.00116632357818718 4.179737087609058e-06 4.1250258380692526e-05 1.4782795962611199e-07 0.00116632357818718 4.179737087609058e-06 0.0013997261517016443 7.773839656670976e-06']
['59852.284516315274 0.002572335519332118 6.561686101017979e-06 0.001172924785454476 4.183680245525257e-06 4.1483728328906824e-05 1.4796742030916865e-07 0.001172924785454476 4.183680245525257e-06 0.0013994107338776418 7.781960221248294e-06']
['59852.28471894225 0.0025607955511184497 6.553974915448014e-06 0.0011750950617961868 4.183675367409048e-06 4.1560486152830966e-05 1.4796724778110029e-07 0.0011750950617961868 4.183675367409048e-06 0.001385700489322263 7.775456692194166e-06']
['59852.28492156921 0.0025521132087078457 6.548501606345595e-06 0.0011754701018821783 4.184338509229214e-06 4.1573750482507224e-05 1.4799070162524483e-07 0.0011754701018821783 4.184338509229214e-06 0.0013766431068256673 7.771200811208613e-06']
['59852.28512419618 0.0025546907814682656 6.551245758558543e-06 0.0011749890347122038 4.185436683048162e-06 4.155673621182708e-05 1.48029541578947e-07 0.0011749890347122038 4.185436683048162e-06 0.0013797017467560618 7.774104528293694e-06']
['59852.28532682315 0.002572333208427844 6.56150741629211e-06 0.0011731581493609848 4.183786864175272e-06 4.14919818887424e-05 1.4797119117254103e-07 0.0011731581493609848 4.183786864175272e-06 0.0013991750590668592 7.781866877485241e-06']
['59852.28552945011 0.0025600570549580005 6.551920766710915e-06 0.0011782394639004215 4.186436828226745e-06 4.1671696627932634e-05 1.4806491447872055e-07 0.0011782394639004215 4.186436828226745e-06 0.001381817591057579 7.775211833126538e-06']
['59852.285732077085 0.002570947519975944 6.561739017806115e-06 0.0011788537972669954 4.1853690052328e-06 4.1693424226154086e-05 1.4802714796586866e-07 0.0011788537972669954 4.1853690052328e-06 0.0013920937227089485 7.782912863945128e-06']
['59852.28593470405 0.002560221093083559 6.555017044259518e-06 0.001176591268591391 4.185394563734609e-06 4.161340364335195e-05 1.4802805191295774e-07 0.001176591268591391 4.185394563734609e-06 0.0013836298244921683 7.77726019268174e-06']
['59852.286137331015 0.002583332846082096 6.56867837163828e-06 0.0011779032220775461 4.185994742605562e-06 4.165980450611378e-05 1.480492788983025e-07 0.0011779032220775461 4.185994742605562e-06 0.00140542962400455 7.789100560087148e-06']
['59852.28633995799 0.0025679823894646887 6.5602398770028e-06 0.0011748763287822241 4.184835899761574e-06 4.155275005496662e-05 1.48008293216772e-07 0.0011748763287822241 4.184835899761574e-06 0.0013931060606824646 7.78136226837891e-06']
['59852.28654258495 0.002564049551202255 6.556868469583709e-06 0.0011794386278644352 4.184921167031057e-06 4.171410837736607e-05 1.4801130892953247e-07 0.0011794386278644352 4.184921167031057e-06 0.0013846109233378197 7.778566018340758e-06']
['59852.286745211924 0.0025643203581977515 6.5566381205718026e-06 0.001175868087669261 4.185266716307433e-06 4.158782635035045e-05 1.480235302351807e-07 0.001175868087669261 4.185266716307433e-06 0.0013884522705284905 7.778557766756388e-06']
['59852.28694783889 0.002570720586646989 6.559196241005909e-06 0.0011795016632809585 4.187032131003034e-06 4.171633779917263e-05 1.4808596900749448e-07 0.0011795016632809585 4.187032131003034e-06 0.0013912189233660306 7.78166392194355e-06']
['59852.287150465854 0.002577888334625442 6.565181853851954e-06 0.001177391991117716 4.185718048024438e-06 4.164172340959854e-05 1.4803949282934412e-07 0.001177391991117716 4.185718048024438e-06 0.001400496343507726 7.78600336191197e-06']
['59852.28735309283 0.0025657408191051946 6.55601377092811e-06 0.0011696533903664912 4.181086277501209e-06 4.136802639578252e-05 1.4787567745733542e-07 0.0011696533903664912 4.181086277501209e-06 0.0013960874287387035 7.775782856054299e-06']
['59852.28755571979 0.0025725810260763034 6.5631172197906915e-06 0.0011733475867143877 4.182073194995358e-06 4.149868186456469e-05 1.479105825234727e-07 0.0011733475867143877 4.182073194995358e-06 0.0013992334393619157 7.782303248332835e-06']
['59852.287758346756 0.0025606940461805104 6.550262378382764e-06 0.0011727974876375312 4.184054163937305e-06 4.147922608961536e-05 1.4798064496774434e-07 0.0011727974876375312 4.184054163937305e-06 0.0013878965585429792 7.772531535633531e-06']
['59852.28796097373 0.0025564850061242277 6.55143018739921e-06 0.0011732033621906118 4.182233981913528e-06 4.149358096548158e-05 1.4791626919743076e-07 0.0011732033621906118 4.182233981913528e-06 0.001383281643933616 7.772536174237976e-06']
['59852.28816360069 0.002566799322229741 6.55760866232661e-06 0.0011757714813395226 4.184576587804664e-06 4.158440960037005e-05 1.4799912193238419e-07 0.0011757714813395226 4.184576587804664e-06 0.0013910278408902183 7.779004601324255e-06']
['59852.288366227665 0.00256372603504199 6.555641489589887e-06 0.00118314635194304 4.1883883190252755e-06 4.184524229175069e-05 1.4813393434693932e-07 0.00118314635194304 4.1883883190252755e-06 0.0013805796830989499 7.779397923424388e-06']
['59852.28856885463 0.00256720195322714 6.557526309101784e-06 0.0011782076011187506 4.185508130857782e-06 4.167056971255406e-05 1.480320685282968e-07 0.0011782076011187506 4.185508130857782e-06 0.0013889943521083893 7.779436329711727e-06']
['59852.288771481595 0.0025658709915133905 6.556188153956396e-06 0.0011718535425490736 4.182599302660957e-06 4.144584086142973e-05 1.4792918977582352e-07 0.0011718535425490736 4.182599302660957e-06 0.001394017448964317 7.776743536770265e-06']
['59852.28897410857 0.0025768340658616543 6.563490098125171e-06 0.001181805219251123 4.185432651417321e-06 4.179780942569275e-05 1.480293989891743e-07 0.001181805219251123 4.185432651417321e-06 0.0013950288466105312 7.784423469193939e-06']
['59852.28917673553 0.0025715402379368163 6.561522653735264e-06 0.0011778785426158104 4.184948422928882e-06 4.165893164870754e-05 1.480122729097252e-07 0.0011778785426158104 4.184948422928882e-06 0.0013936616953210059 7.782504278062171e-06']
['59852.2893793625 0.00255956099094931 6.552942564811276e-06 0.0011767383887884382 4.185340110096143e-06 4.161860695592722e-05 1.4802612600946193e-07 0.0011767383887884382 4.185340110096143e-06 0.0013828226021608716 7.775482499169744e-06']
['59852.28958198947 0.0025592245722606006 6.5535534921582695e-06 0.0011834467784219847 4.188073103878811e-06 4.1855867704897305e-05 1.4812278589167327e-07 0.0011834467784219847 4.188073103878811e-06 0.0013757777938386158 7.777468720477952e-06']
['59852.289784616434 0.002571093966445061 6.558433347664256e-06 0.0011758853982108653 4.185418324512782e-06 4.158843858552021e-05 1.480288922785795e-07 0.0011758853982108653 4.185418324512782e-06 0.0013952085682341958 7.780152603061328e-06']
['59852.289987243406 0.002562521743653314 6.555291453826691e-06 0.0011830749788474865 4.1871398840687074e-06 4.184271798487044e-05 1.4808977999261342e-07 0.0011830749788474865 4.1871398840687074e-06 0.0013794467648058277 7.778430847759217e-06']
['59852.29018987037 0.0025574580169536133 6.5509720761977944e-06 0.0011723927282918697 4.182604329379374e-06 4.146491065614321e-05 1.4792936755961985e-07 0.0011723927282918697 4.182604329379374e-06 0.0013850652886617436 7.772349330753626e-06']
['59852.290392497336 0.002570707048841494 6.560853170385445e-06 0.0011736244044481619 4.182997843936964e-06 4.150847228915706e-05 1.4794328529006852e-07 0.0011736244044481619 4.182997843936964e-06 0.0013970826443933321 7.78089103417713e-06']
['59852.29059512431 0.0025657052860861215 6.557400471420608e-06 0.0011798551976455725 4.1863863715228235e-06 4.172884151954623e-05 1.4806312993786695e-07 0.0011798551976455725 4.1863863715228235e-06 0.001385850088440549 7.779802812042169e-06']
['59852.29079775127 0.002563806729948767 6.555606534517801e-06 0.001180037140883982 4.187064298145324e-06 4.173527644526957e-05 1.4808710668742794e-07 0.001180037140883982 4.187064298145324e-06 0.0013837695890647848 7.778655698269187e-06']
['59852.29100037824 0.002572071568836501 6.563507104126761e-06 0.0011763306603960657 4.18433266440512e-06 4.160418651390833e-05 1.4799049490687906e-07 0.0011763306603960657 4.18433266440512e-06 0.0013957409084404352 7.7838464368415e-06']
['59852.29120300521 0.002555985543369249 6.5512656136204575e-06 0.0011754318904331454 4.18426128474049e-06 4.157239902895249e-05 1.4798797036766525e-07 0.0011754318904331454 4.18426128474049e-06 0.0013805536529361037 7.77348851154898e-06']
['59852.291405632175 0.002562440574745893 6.555611038498206e-06 0.0011753363909117293 4.1837383056448e-06 4.1569021424308875e-05 1.479694737658402e-07 0.0011753363909117293 4.1837383056448e-06 0.0013871041838341635 7.776869697905396e-06']
['59852.29160825914 0.0025524702261748786 6.54800340348883e-06 0.0011775077556315588 4.185520666387373e-06 4.16458177417347e-05 1.4803251188196317e-07 0.0011775077556315588 4.185520666387373e-06 0.0013749624705433198 7.771417619769066e-06']
['59852.29181088611 0.002560518320601516 6.555333491248416e-06 0.0011720021372577491 4.181465229983241e-06 4.145109632418595e-05 1.4788908015971593e-07 0.0011720021372577491 4.181465229983241e-06 0.001388516183343767 7.775413085556415e-06']
['59852.29201351308 0.002571264828681761 6.558219992370967e-06 0.001176048045054639 4.18408193184923e-06 4.159419104089018e-05 1.479816270567315e-07 0.001176048045054639 4.18408193184923e-06 0.001395216783627122 7.779253889722422e-06']
['59852.29221614005 0.0025628812130314978 6.5559268131496436e-06 0.0011803305821681653 4.186163688195432e-06 4.174565480768845e-05 1.4805525412624505e-07 0.0011803305821681653 4.186163688195432e-06 0.0013825506308633325 7.778440898003945e-06']
['59852.292418767014 0.0025693761538877393 6.559773357192608e-06 0.0011808066250774006 4.186496108497591e-06 4.176249138149482e-05 1.4806701108941675e-07 0.0011808066250774006 4.186496108497591e-06 0.0013885695288103387 7.781861998532192e-06']
['59852.29262139398 0.0025614622816877053 6.555338779512336e-06 0.001175728256284447 4.184970756209281e-06 4.1582880826774335e-05 1.4801306278794094e-07 0.001175728256284447 4.184970756209281e-06 0.0013857340254032583 7.777303307992119e-06']
['59852.29282402095 0.0025609202339285445 6.552622479193745e-06 0.0011783250285083823 4.186092167076954e-06 4.1674722856890564e-05 1.4805272458412479e-07 0.0011783250285083823 4.186092167076954e-06 0.0013825952054201621 7.775617595155912e-06']
['59852.293026647916 0.0025570609100025606 6.551525116544875e-06 0.0011792552846051658 4.187249037310514e-06 4.170762393603378e-05 1.4809364049883297e-07 0.0011792552846051658 4.187249037310514e-06 0.0013778056253973949 7.775315804079997e-06']
['59852.29322927488 0.002563474724848816 6.556402340801833e-06 0.0011765722249299786 4.182832521090985e-06 4.161273011160787e-05 1.4793743819048107e-07 0.0011765722249299786 4.182832521090985e-06 0.0013869024999188374 7.777049540408504e-06']
['59852.29343190185 0.0025649330829609217 6.5563730060698465e-06 0.001170044469212257 4.1815538401708865e-06 4.138185798054748e-05 1.4789221410402085e-07 0.001170044469212257 4.1815538401708865e-06 0.0013948886137486647 7.776337152732592e-06']
['59852.29363452882 0.002575893714573868 6.565546861667331e-06 0.001176958798314184 4.1850342129388155e-06 4.162640234826655e-05 1.4801530711064717e-07 0.001176958798314184 4.1850342129388155e-06 0.0013989349162596841 7.785943549513967e-06']
['59852.29383715579 0.0025632552851450412 6.5518826975060625e-06 0.0011760240655339879 4.183391034077894e-06 4.159334293883583e-05 1.47957191546625e-07 0.0011760240655339879 4.183391034077894e-06 0.0013872312196110534 7.773540211890759e-06']
['59852.294039782755 0.002570236489935249 6.559839834513015e-06 0.0011702433797883827 4.182047197675453e-06 4.1388893003086067e-05 1.4790966305636824e-07 0.0011702433797883827 4.182047197675453e-06 0.0013999931101468664 7.779525526537519e-06']
['59852.29424240972 0.002555392747172183 6.550269676871448e-06 0.0011746072026336445 4.183393391836925e-06 4.15432316645529e-05 1.4795727493529264e-07 0.0011746072026336445 4.183393391836925e-06 0.0013807855445385387 7.772182004469944e-06']
['59852.29444503669 0.002552925708577868 6.551561626960102e-06 0.0011784918440564006 4.186545779101504e-06 4.1680622750013166e-05 1.4806876782766988e-07 0.0011784918440564006 4.186545779101504e-06 0.0013744338645214674 7.774967865680778e-06']
['59852.29464766366 0.002552484807399215 6.548089835002153e-06 0.0011717867928383446 4.182462601203422e-06 4.144348007333807e-05 1.4792435495078028e-07 0.0011717867928383446 4.182462601203422e-06 0.0013806980145608704 7.769843878593946e-06']
['59852.29485029062 0.0025674156274478463 6.558614651862788e-06 0.0011739730034834666 4.1840143771241226e-06 4.1520801457962796e-05 1.4797923779708036e-07 0.0011739730034834666 4.1840143771241226e-06 0.0013934426239643797 7.779550273609048e-06']
['59852.295052917594 0.002551822745170421 6.547707958410381e-06 0.0011792479388139146 4.1865984957829244e-06 4.17073641318141e-05 1.480706322988769e-07 0.0011792479388139146 4.1865984957829244e-06 0.0013725748063565064 7.771749254416438e-06']
['59852.29525554456 0.0025490612820115817 6.546086915461078e-06 0.0011719996733490217 4.183662903748538e-06 4.145100918124077e-05 1.4796680696928273e-07 0.0011719996733490217 4.183662903748538e-06 0.00137706160866256 7.768802301318549e-06']
['59852.29545817153 0.0025553654429309046 6.547803960218069e-06 0.001170860823484727 4.182111120211111e-06 4.141073060672032e-05 1.4791192385359602e-07 0.001170860823484727 4.182111120211111e-06 0.0013845046194461777 7.769413756728423e-06']
['59852.295660798496 0.002549416460240727 6.54765303942938e-06 0.0011672079170059152 4.18029679888138e-06 4.128153546833025e-05 1.4784775536293297e-07 0.0011672079170059152 4.18029679888138e-06 0.001382208543234812 7.768310089812759e-06']
['59852.29586342546 0.002555602507006353 6.551518648223481e-06 0.0011700097376088462 4.1813609107014815e-06 4.1380629601355406e-05 1.4788539061986e-07 0.0011700097376088462 4.1813609107014815e-06 0.0013855927693975066 7.77214099611956e-06']
['59852.29606605243 0.0025506931514367257 6.547346184133745e-06 0.0011680008285534246 4.180637111805198e-06 4.130957897771264e-05 1.4785979147049378e-07 0.0011680008285534246 4.180637111805198e-06 0.001382692322883301 7.768234594519762e-06']
['59852.2962686794 0.002546461460326284 6.543926267007522e-06 0.001171919577302974 4.182535213680484e-06 4.14481763630962e-05 1.4792692309181462e-07 0.001171919577302974 4.182535213680484e-06 0.0013745418830233098 7.766374430949635e-06']
['59852.29647130636 0.0025543620648681817 6.551603646555954e-06 0.0011752892020478161 4.1852500370422825e-06 4.156735245965317e-05 1.480229403268483e-07 0.0011752892020478161 4.1852500370422825e-06 0.0013790728628203656 7.774305641928911e-06']
['59852.296673933335 0.0025592497729815403 6.554281828905754e-06 0.001174957529790823 4.183330231340016e-06 4.1555621953167195e-05 1.4795504108967238e-07 0.001174957529790823 4.183330231340016e-06 0.0013842922431907172 7.775529700101946e-06']
['59852.2968765603 0.0025418419045145878 6.543682122133589e-06 0.0011723530638029147 4.183685246251705e-06 4.1463507811813784e-05 1.4796759717368716e-07 0.0011723530638029147 4.183685246251705e-06 0.001369488840711673 7.76678813636853e-06']
['59852.297079187265 0.002561510315010333 6.555161481775287e-06 0.001167787622751176 4.179492393142563e-06 4.130203836497403e-05 1.4781930532969201e-07 0.001167787622751176 4.179492393142563e-06 0.001393722692259157 7.7742072725447e-06']
['59852.29728181424 0.0025500014726819236 6.546826393027954e-06 0.0011678576906346677 4.180494995225032e-06 4.130451650942064e-05 1.4785476512466516e-07 0.0011678576906346677 4.180494995225032e-06 0.001382143782047256 7.767720014621339e-06']
['59852.2974844412 0.0025453588362203375 6.544052172814489e-06 0.0011699422759596455 4.181882650302885e-06 4.137824363359109e-05 1.4790384338354225e-07 0.0011699422759596455 4.181882650302885e-06 0.001375416560260692 7.766129109242411e-06']
['59852.297687068174 0.0025443210527665424 6.540967763475684e-06 0.0011684325947606536 4.179983343321079e-06 4.132484958352165e-05 1.4783666914029705e-07 0.0011684325947606536 4.179983343321079e-06 0.0013758884580058889 7.762507329031629e-06']
['59852.29788969514 0.0025349899253096345 6.538802841553006e-06 0.0011585966387508148 4.1759409857303135e-06 4.097697380152159e-05 1.476936999864492e-07 0.0011585966387508148 4.1759409857303135e-06 0.0013763932865588197 7.758506667974446e-06']
['59852.298092322104 0.002544730570674902 6.544937456182151e-06 0.0011633921630905726 4.179291109663269e-06 4.114658078005269e-05 1.4781218638287148e-07 0.0011633921630905726 4.179291109663269e-06 0.0013813384075843295 7.765480055002815e-06']
['59852.298294949076 0.0025392734504608174 6.542444229280753e-06 0.0011628205867528503 4.178744262083794e-06 4.1126365402385384e-05 1.4779284560611788e-07 0.0011628205867528503 4.178744262083794e-06 0.0013764528637079671 7.76308444506095e-06']
['59852.29849757604 0.0025314253746653867 6.533843624484206e-06 0.0011614358874326512 4.176065601948419e-06 4.107739168205079e-05 1.4769810738358273e-07 0.0011614358874326512 4.176065601948419e-06 0.0013699894872327356 7.754394652130475e-06']
['59852.298700203006 0.002534153081674233 6.536192491033544e-06 0.0011623527465963234 4.177153057053703e-06 4.110981894161024e-05 1.477365682403375e-07 0.0011623527465963234 4.177153057053703e-06 0.0013718003350779095 7.756959452124032e-06']
['59852.29890282998 0.0025227778270988065 6.529078765135684e-06 0.0011598189544213373 4.175836558961042e-06 4.102020437507322e-05 1.4769000664500015e-07 0.0011598189544213373 4.175836558961042e-06 0.0013629588726774692 7.750256801455118e-06']
['59852.29910545694 0.0025441997725310387 6.544374454183805e-06 0.0011650678038819355 4.179268259257019e-06 4.120584445000643e-05 1.4781137821507008e-07 0.0011650678038819355 4.179268259257019e-06 0.0013791319686491032 7.764993250441803e-06']
['59852.299308083915 0.0025459204528916397 6.54518176642681e-06 0.001172552340986395 4.182629838242355e-06 4.147055580043519e-05 1.4793026975109455e-07 0.001172552340986395 4.182629838242355e-06 0.0013733681119052446 7.767483293790933e-06']
['59852.29951071088 0.0025371459215420226 6.5350993130318195e-06 0.001163439405424852 4.178704078258873e-06 4.114825163583575e-05 1.4779142439403597e-07 0.001163439405424852 4.178704078258873e-06 0.0013737065161171706 7.756873777808061e-06']
['59852.299713337845 0.0025356504769031823 6.536487743352853e-06 0.0011647632792170439 4.178844497795239e-06 4.1195074093181786e-05 1.4779639071921805e-07 0.0011647632792170439 4.178844497795239e-06 0.0013708871976861384 7.758119189323893e-06']
['59852.29991596482 0.0025275077923104287 6.531954489240645e-06 0.0011575192689557653 4.176327928937632e-06 4.093886963965047e-05 1.4770738530292488e-07 0.0011575192689557653 4.176327928937632e-06 0.0013699885233546634 7.752944241998359e-06']
['59852.30011859178 0.002541956609842978 6.539857741213167e-06 0.0011587798993509847 4.175788700644558e-06 4.098345531938626e-05 1.4768831400330316e-07 0.0011587798993509847 4.175788700644558e-06 0.0013831767104919932 7.759313793611942e-06']
['59852.30032121875 0.002515984644397326 6.521837843335687e-06 0.001189621121812544 4.193321784660512e-06 4.2074240431776035e-05 1.4830842000081084e-07 0.001189621121812544 4.193321784660512e-06 0.001326363522584782 7.753600224700388e-06']
['59852.30052384572 0.0025261234474518064 6.534865085608308e-06 0.001163525776068703 4.17709003110155e-06 4.1151306372481725e-05 1.4773433915326455e-07 0.001163525776068703 4.17709003110155e-06 0.0013625976713831035 7.755807038279796e-06']
['59852.300726472684 0.0025127187163432657 6.522884384593105e-06 0.0011540326456852023 4.173868532537002e-06 4.0815555566715064e-05 1.4762040194866204e-07 0.0011540326456852023 4.173868532537002e-06 0.0013586860706580634 7.743978255500925e-06']
['59852.300929099656 0.002527744736014125 6.533378014859001e-06 0.00115733522443968 4.174282515494676e-06 4.093236039643182e-05 1.4763504360067753e-07 0.00115733522443968 4.174282515494676e-06 0.0013704095115744449 7.753042164480178e-06']
['59852.30113172662 0.002530305653309785 6.535491098615535e-06 0.0011561627420709907 4.175945382210037e-06 4.0890892315395154e-05 1.4769385548011146e-07 0.0011561627420709907 4.175945382210037e-06 0.0013741429112387941 7.75571813150041e-06']
['59852.301334353586 0.0025218929314995368 6.53091415187575e-06 0.001152947310189069 4.172376268777908e-06 4.07771696757989e-05 1.4756762391451614e-07 0.001152947310189069 4.172376268777908e-06 0.0013689456213104678 7.749939573147136e-06']
['59852.30153698056 0.0025122858814732012 6.523090356688148e-06 0.0011547649691326695 4.174932542383668e-06 4.08414562104054e-05 1.476580335990166e-07 0.0011547649691326695 4.174932542383668e-06 0.0013575209123405318 7.744725271755743e-06']
['59852.30173960752 0.002515033584296476 6.523192837558623e-06 0.0011496629171099384 4.171698421862407e-06 4.066100803277659e-05 1.4754364998401354e-07 0.0011496629171099384 4.171698421862407e-06 0.0013653706671865377 7.74306867585103e-06']
['59852.30194223449 0.002511385679711418 6.521332243426336e-06 0.001156318981207269 4.173711799431788e-06 4.08964181444714e-05 1.4761485864900853e-07 0.001156318981207269 4.173711799431788e-06 0.0013550666985041489 7.742586416299666e-06']
['59852.30214486146 0.0025148844563170343 6.524008365435022e-06 0.0011477784014654886 4.1701898173857135e-06 4.059435692607699e-05 1.4749029401520547e-07 0.0011477784014654886 4.1701898173857135e-06 0.0013671060548515457 7.742943126828043e-06']
['59852.302347488425 0.002513975237152476 6.5241094338867916e-06 0.0011536948481384842 4.172601380601377e-06 4.080360842242073e-05 1.4757558561661693e-07 0.0011536948481384842 4.172601380601377e-06 0.0013602803890139918 7.744327355343855e-06']
['59852.3025501154 0.002518240683388759 6.526168738404327e-06 0.0011545995439037901 4.173070794614291e-06 4.0835605489763564e-05 1.475921877411751e-07 0.0011545995439037901 4.173070794614291e-06 0.0013636411394849688 7.746315140696813e-06']
['59852.30275274236 0.002504236520009358 6.518281597951896e-06 0.0011493471703656383 4.172121831983023e-06 4.064984077608313e-05 1.475586250537138e-07 0.0011493471703656383 4.172121831983023e-06 0.0013548893496437198 7.73915987501923e-06']
['59852.30295536933 0.002512679635953816 6.523246881906929e-06 0.0011539016596631235 4.17520117460615e-06 4.081092288385067e-05 1.476675345203681e-07 0.0011539016596631235 4.17520117460615e-06 0.0013587779762906924 7.74500191935038e-06']
['59852.3031579963 0.0025051520039767934 6.5167080957058495e-06 0.0011544603072243735 4.174132135298011e-06 4.0830680999588264e-05 1.4762972498920146e-07 0.0011544603072243735 4.174132135298011e-06 0.0013506916967524199 7.738918754423366e-06']
['59852.303360623264 0.002508358358164343 6.519603166614808e-06 0.001151742297229448 4.172773032300593e-06 4.0734551060462574e-05 1.4758165655359921e-07 0.001151742297229448 4.172773032300593e-06 0.0013566160609348949 7.740624020660667e-06']
['59852.30356325023 0.002503892336484913 6.517699298942896e-06 0.0011419677925611355 4.168832086447626e-06 4.038884867507663e-05 1.474422741062754e-07 0.0011419677925611355 4.168832086447626e-06 0.0013619245439237776 7.736896349081845e-06']
['59852.3037658772 0.002508844982950366 6.521589335676707e-06 0.00114923501788827 4.1718823073245755e-06 4.064587419360465e-05 1.4755015360185063e-07 0.00114923501788827 4.1718823073245755e-06 0.0013596099650620961 7.741816934633625e-06']
['59852.303968504166 0.0024992382910309034 6.514584625889533e-06 0.0011459612002793391 4.17070400892032e-06 4.053008658132851e-05 1.4750847982063407e-07 0.0011459612002793391 4.17070400892032e-06 0.0013532770907515642 7.735281816320612e-06']
['59852.30417113113 0.00249853918297332 6.51182132206964e-06 0.0011436697460144821 4.1680065523574595e-06 4.04490429650794e-05 1.474130768104663e-07 0.0011436697460144821 4.1680065523574595e-06 0.0013548694369588377 7.73150021348092e-06']
['59852.3043737581 0.0024987775382811035 6.512523143717446e-06 0.0011437512602099427 4.1697138709008625e-06 4.045192593999934e-05 1.474734608517141e-07 0.0011437512602099427 4.1697138709008625e-06 0.0013550262780711608 7.733011797652867e-06']
['59852.30457638507 0.0024918730307457314 6.506443931040084e-06 0.0011416098722410437 4.168593420822759e-06 4.037618983325983e-05 1.4743383303651014e-07 0.0011416098722410437 4.168593420822759e-06 0.0013502631585046877 7.727288252413982e-06']
['59852.30477901204 0.0024966466503232075 6.510650049807311e-06 0.001147040428170266 4.16961445047229e-06 4.056825645989821e-05 1.4746994457334706e-07 0.001147040428170266 4.16961445047229e-06 0.0013496062221529416 7.731380778143272e-06']
['59852.304981639005 0.0024978535249029323 6.51268367173487e-06 0.001155448677135587 4.1735001377160816e-06 4.0865637434471136e-05 1.4760737264716007e-07 0.001155448677135587 4.1735001377160816e-06 0.0013424048477673452 7.735189203089873e-06']
['59852.30518426597 0.002503072219529312 6.518162490884294e-06 0.0011457876345902375 4.169060319770921e-06 4.052394795080147e-05 1.474503462088489e-07 0.0011457876345902375 4.169060319770921e-06 0.0013572845849390747 7.737409528224506e-06']
['59852.30538689294 0.0024875571504407138 6.508749259424068e-06 0.0011360608527087852 4.166074083397749e-06 4.017993341373263e-05 1.4734472970217527e-07 0.0011360608527087852 4.166074083397749e-06 0.0013514962977319285 7.727870999855766e-06']
['59852.30558951991 0.0025008556003030856 6.513764366074168e-06 0.0011467801446798725 4.170043526738563e-06 4.0559050814542355e-05 1.4748512004195612e-07 0.0011467801446798725 4.170043526738563e-06 0.0013540754556232131 7.734234883401965e-06']
['59852.30579214687 0.00249096016945177 6.507654569581149e-06 0.001142121910162759 4.168459947031057e-06 4.039429947021349e-05 1.4742911236679398e-07 0.001142121910162759 4.168459947031057e-06 0.0013488382592890108 7.728235654209347e-06']
['59852.305994773844 0.0024955593817849865 6.51326013793391e-06 0.0011493260151475221 4.170998895132655e-06 4.06490925632975e-05 1.4751890928693246e-07 0.0011493260151475221 4.170998895132655e-06 0.0013462333666374644 7.734325400938126e-06']
['59852.30619740081 0.0024999812459828887 6.513884903980746e-06 0.0011385606930237947 4.1666649716957295e-06 4.026834717886021e-05 1.4736562810071724e-07 0.0011385606930237947 4.1666649716957295e-06 0.001361420552959094 7.732515342931072e-06']
['59852.30640002778 0.0024882076083261465 6.505180306647423e-06 0.0011496593981664726 4.171866448239349e-06 4.066088357561058e-05 1.4754959270144913e-07 0.0011496593981664726 4.171866448239349e-06 0.001338548210159674 7.727990714534967e-06']
['59852.306602654746 0.002492338828164847 6.509658876595587e-06 0.0011467315866512723 4.169846038141576e-06 4.055733342559158e-05 1.4747813531164174e-07 0.0011467315866512723 4.169846038141576e-06 0.0013456072415135745 7.73067103629722e-06']
['59852.30680528171 0.0024799032888455645 6.501670137726099e-06 0.0011449801685286258 4.1701975380963005e-06 4.049538968078271e-05 1.4749056707948417e-07 0.0011449801685286258 4.1701975380963005e-06 0.0013349231203169387 7.724135038083149e-06']
['59852.30700790868 0.0024907328236497984 6.50779086664702e-06 0.0011399205016346373 4.165845247150392e-06 4.031644057043233e-05 1.4733663627552517e-07 0.0011399205016346373 4.165845247150392e-06 0.0013508123220151611 7.726940441547345e-06']
['59852.30721053565 0.0024975849512299327 6.5114885074287725e-06 0.001155781829233744 4.174421597317173e-06 4.087742027963183e-05 1.4763996261390967e-07 0.001155781829233744 4.174421597317173e-06 0.0013418031219961887 7.734680229623267e-06']
['59852.30741316261 0.0024922268256443183 6.508332951919636e-06 0.0011515278119211875 4.17277650840131e-06 4.072696519445586e-05 1.4758177949551295e-07 0.0011515278119211875 4.17277650840131e-06 0.0013406990137231308 7.731135854588819e-06']
['59852.307615789585 0.002493052646505286 6.509444012303058e-06 0.001147920140427748 4.171147300419857e-06 4.0599369916404164e-05 1.475241580502745e-07 0.001147920140427748 4.171147300419857e-06 0.001345132506077538 7.731192091204823e-06']
['59852.30781841655 0.0024931360728273327 6.51177112816024e-06 0.0011411124792253917 4.167609799602871e-06 4.0358598153904184e-05 1.473990445522267e-07 0.0011411124792253917 4.167609799602871e-06 0.001352023593601941 7.731244056895835e-06']
['59852.30802104352 0.002495281333556652 6.511477386509687e-06 0.001146103892675901 4.168986636899781e-06 4.0535133292496165e-05 1.4744774021036817e-07 0.001146103892675901 4.168986636899781e-06 0.0013491774408807512 7.731738959230062e-06']
['59852.30822367049 0.0024992658208904026 6.5157545550509956e-06 0.0011564925950284658 4.1746649536823946e-06 4.090255847732308e-05 1.476485695846781e-07 0.0011564925950284658 4.1746649536823946e-06 0.0013427732258619368 7.738403252426938e-06']
['59852.30842629745 0.0024938060285412465 6.512046942623679e-06 0.0011455009794811798 4.170795377356253e-06 4.051380960023057e-05 1.4751171131801658e-07 0.0011455009794811798 4.170795377356253e-06 0.0013483050490600667 7.733194001362613e-06']
['59852.308628924424 0.002486655878556779 6.505485390098785e-06 0.0011431747308610163 4.170263662050919e-06 4.0431535385395075e-05 1.474929057359807e-07 0.0011431747308610163 4.170263662050919e-06 0.0013434811476957626 7.727382426916056e-06']
['59852.30883155139 0.0024964630640723004 6.5122660723647985e-06 0.0011403530774719047 4.167401664878326e-06 4.0331739811046385e-05 1.473916832921733e-07 0.0011403530774719047 4.167401664878326e-06 0.0013561099866003957 7.731548747418222e-06']
['59852.30903417835 0.002495123126271165 6.5122642511662034e-06 0.0011406024005561509 4.167126893763374e-06 4.034055781133187e-05 1.4738196525191477e-07 0.0011406024005561509 4.167126893763374e-06 0.0013545207257150142 7.73139911178716e-06']
['59852.309236805326 0.002490480527005529 6.507637643288037e-06 0.0011424817463949397 4.167170081804033e-06 4.040702607355907e-05 1.4738349271639328e-07 0.0011424817463949397 4.167170081804033e-06 0.0013479987806105892 7.727525748065943e-06']
['59852.30943943229 0.002498474950883819 6.514263738436579e-06 0.001143510803464545 4.169203111138808e-06 4.0443421522303816e-05 1.4745539642041112e-07 0.001143510803464545 4.169203111138808e-06 0.0013549641474192738 7.73420239170396e-06']
['59852.30964205926 0.002494598640669414 6.511671746330623e-06 0.0011437479483547008 4.168371761186763e-06 4.045180880708099e-05 1.4742599343056507e-07 0.0011437479483547008 4.168371761186763e-06 0.0013508506923147132 7.731571125678127e-06']
['59852.30984468623 0.00249943076252145 6.512958144451317e-06 0.0011465356777028573 4.169972304487509e-06 4.055040456391687e-05 1.474826010701087e-07 0.0011465356777028573 4.169972304487509e-06 0.0013528950848185927 7.733517492808019e-06']
['59852.31004731319 0.0024921495602373313 6.5091812714951575e-06 0.0011462472120350369 4.169944335710249e-06 4.054020217792889e-05 1.4748161187696356e-07 0.0011462472120350369 4.169944335710249e-06 0.0013459023482022944 7.730321894210182e-06']
['59852.310249940165 0.002502737122233928 6.5170527074694616e-06 0.0011449673547069819 4.170488330405447e-06 4.0494936484548365e-05 1.475008517535761e-07 0.0011449673547069819 4.170488330405447e-06 0.001357769767526946 7.737244270797133e-06']
['59852.31045256713 0.002492297442049122 6.507187029565669e-06 0.0011388290881436398 4.16634417495692e-06 4.027783971442134e-05 1.4735428223700405e-07 0.0011388290881436398 4.16634417495692e-06 0.001353468353905482 7.72670090154557e-06']
['59852.310655194095 0.002481044668430036 6.502557079057155e-06 0.0011382755150263501 4.166147121380829e-06 4.025826107042592e-05 1.4734731289240657e-07 0.0011382755150263501 4.166147121380829e-06 0.001342769153403686 7.72269579896723e-06']
['59852.31085782107 0.0024841016972854553 6.505205083786588e-06 0.001135191602562768 4.165774640814784e-06 4.0149189978727734e-05 1.4733413908723062e-07 0.001135191602562768 4.165774640814784e-06 0.0013489100947226874 7.724724690251323e-06']
['59852.31106044803 0.0024939471245042696 6.511221956022364e-06 0.0011472508985617012 4.169068004863783e-06 4.0575700327269636e-05 1.4745061801340822e-07 0.0011472508985617012 4.169068004863783e-06 0.0013466962259425683 7.731567718759669e-06']
['59852.311263075 0.0024947357771856775 6.511057532977025e-06 0.0011415716820103337 4.1680800577539685e-06 4.0374839130149755e-05 1.4741567653206593e-07 0.0011415716820103337 4.1680800577539685e-06 0.0013531640951753438 7.730896556388735e-06']
['59852.31146570197 0.0024912271264500886 6.508406070346754e-06 0.001138334360749355 4.1656323373902775e-06 4.026034231213615e-05 1.4732910613313523e-07 0.001138334360749355 4.1656323373902775e-06 0.0013528927657007336 7.727343809281301e-06']
['59852.31166832893 0.002497666082222585 6.5146841780961175e-06 0.0011433764913012152 4.169138597625194e-06 4.043867120125686e-05 1.474531147216138e-07 0.0011433764913012152 4.169138597625194e-06 0.0013542895909213698 7.734521742586547e-06']
['59852.311870955906 0.0024937529642723765 6.507346419204837e-06 0.001146398335808978 4.170313808627378e-06 4.0545547088071425e-05 1.4749467930831903e-07 0.001146398335808978 4.170313808627378e-06 0.0013473546284633986 7.72897630232919e-06']
['59852.31207358287 0.0024852401983281227 6.505079261417235e-06 0.00113769273963207 4.164783580160564e-06 4.023764960715658e-05 1.4729908748678105e-07 0.00113769273963207 4.164783580160564e-06 0.0013475474586960526 7.724084312518582e-06']
['59852.312276209836 0.002488163833878414 6.505803855882092e-06 0.0011489851948798392 4.17157738573274e-06 4.063703851211802e-05 1.4753936920660706e-07 0.0011489851948798392 4.17157738573274e-06 0.0013391786389985749 7.728359573439055e-06']
['59852.31247883681 0.0024833593722398597 6.5045517242688145e-06 0.0011470409318297648 4.1692570065146235e-06 4.056827427320907e-05 1.4745730257940463e-07 0.0011470409318297648 4.1692570065146235e-06 0.0013363184404100949 7.72605313986771e-06']
['59852.31268146377 0.002485967155073176 6.502612821286974e-06 0.0011390081853316354 4.166159895103077e-06 4.0284173981702095e-05 1.4734776467041487e-07 0.0011390081853316354 4.166159895103077e-06 0.0013469589697415406 7.722749625303868e-06']
['59852.31288409074 0.002492498252643803 6.511976116466196e-06 0.0011448371745088088 4.169772238410038e-06 4.04903323018746e-05 1.4747552518006993e-07 0.0011448371745088088 4.169772238410038e-06 0.0013476610781349943 7.732582586797324e-06']
['59852.31308671771 0.0024859850496031584 6.501798087351496e-06 0.0011393025090641372 4.166846277743321e-06 4.0294583554345854e-05 1.4737204049042537e-07 0.0011393025090641372 4.166846277743321e-06 0.0013466825405390212 7.722433960289395e-06']
['59852.313289344675 0.002493122846681508 6.510981225685864e-06 0.0011422423845109074 4.167927785174326e-06 4.039856037866318e-05 1.4741029099123317e-07 0.0011422423845109074 4.167927785174326e-06 0.0013508804621706005 7.730750192811947e-06']
['59852.31349197165 0.002490891122177756 6.511440910773384e-06 0.0011410209180074099 4.166752485798541e-06 4.035535983825144e-05 1.4736872327895117e-07 0.0011410209180074099 4.166752485798541e-06 0.0013498702041703462 7.730503800684768e-06']
['59852.31369459861 0.0024744216187365946 6.49759926678723e-06 0.0011323730968386789 4.163517972595105e-06 4.004950573025627e-05 1.4725432577565718e-07 0.0011323730968386789 4.163517972595105e-06 0.0013420485218979157 7.717102962891994e-06']
['59852.31389722558 0.0024771924323455535 6.499470150232544e-06 0.0011449643269902117 4.1686601554675274e-06 4.049482940097275e-05 1.4743619329175243e-07 0.0011449643269902117 4.1686601554675274e-06 0.0013322281053553418 7.721453213323667e-06']
['59852.31409985255 0.0024939702080010923 6.510847058956498e-06 0.001139130827814101 4.166080080353177e-06 4.028851157221709e-05 1.4734494180108636e-07 0.001139130827814101 4.166080080353177e-06 0.0013548393801869913 7.7296411728513e-06']
['59852.31430247951 0.0024750515661334013 6.4977527630572685e-06 0.0011358289556092933 4.1646619489311405e-06 4.017173173158311e-05 1.4729478566202614e-07 0.0011358289556092933 4.1646619489311405e-06 0.001339222610524108 7.717849449081868e-06']
['59852.31450510648 0.002485252037670911 6.507090562011675e-06 0.0011433531494279908 4.1680000417905394e-06 4.043784565136693e-05 1.474128465462646e-07 0.0011433531494279908 4.1680000417905394e-06 0.0013418988882429202 7.7275126613023e-06']
['59852.31470773345 0.002485024732598861 6.504878718494376e-06 0.0011372435137743772 4.166114157142286e-06 4.022176149253069e-05 1.4734614702096e-07 0.0011372435137743772 4.166114157142286e-06 0.0013477812188244839 7.724632956501068e-06']
['59852.314910360416 0.0024869182579090794 6.504327444745971e-06 0.0011449573687732882 4.169186977282765e-06 4.049458330439087e-05 1.4745482580197992e-07 0.0011449573687732882 4.169186977282765e-06 0.0013419608891357911 7.725826529247201e-06']
['59852.31511298739 0.002480375663394041 6.50135970458133e-06 0.0011349399901238366 4.164857750696825e-06 4.014029100908344e-05 1.4730171073288722e-07 0.0011349399901238366 4.164857750696825e-06 0.0013454356732702044 7.720992040657293e-06']
['59852.31531561435 0.0024846238971764378 6.502729218263659e-06 0.0011429500824364615 4.168380768608312e-06 4.042359007267825e-05 1.4742631200293487e-07 0.0011429500824364615 4.168380768608312e-06 0.0013416738147399763 7.724045929314735e-06']
['59852.31551824132 0.0024902248504794096 6.507815783497924e-06 0.0011429892584980533 4.168691292850886e-06 4.042497564242341e-05 1.4743729455141385e-07 0.0011429892584980533 4.168691292850886e-06 0.0013472355919813563 7.72849619052992e-06']
['59852.31572086829 0.0024920422219634397 6.507960460376234e-06 0.0011359096292101738 4.165444256512232e-06 4.017458497655137e-05 1.473224541328148e-07 0.0011359096292101738 4.165444256512232e-06 0.0013561325927532659 7.726867101738659e-06']
['59852.315923495255 0.002481371121286235 6.502947012426527e-06 0.001148414131788246 4.1713194675791086e-06 4.061684128681927e-05 1.4753024721792627e-07 0.001148414131788246 4.1713194675791086e-06 0.001332956989497989 7.725815552226934e-06']
['59852.31612612222 0.0024876021126567123 6.510378411836825e-06 0.0011377536697297645 4.165779157344594e-06 4.023980456854128e-05 1.4733429882679612e-07 0.0011377536697297645 4.165779157344594e-06 0.0013498484429269478 7.729084231206025e-06']
['59852.31632874919 0.002490087345293867 6.508731657432233e-06 0.0011375989385484725 4.166407487108025e-06 4.023433207246282e-05 1.473565214462943e-07 0.0011375989385484725 4.166407487108025e-06 0.0013524884067453945 7.728035917171345e-06']
['59852.31653137616 0.0024846889622258403 6.504516524166724e-06 0.0011411172230442628 4.167254962255314e-06 4.035876593217584e-05 1.4738649474825844e-07 0.0011411172230442628 4.167254962255314e-06 0.0013435717391815775 7.724943309410077e-06']
['59852.31673400312 0.0024839786930458876 6.503890458726262e-06 0.0011358871613483246 4.1644952883379725e-06 4.017379033849048e-05 1.472888912493103e-07 0.0011358871613483246 4.1644952883379725e-06 0.001348091531697563 7.722927690047323e-06']
['59852.31693663009 0.002484221195328627 6.506612030433009e-06 0.0011451983675618655 4.1695860403259764e-06 4.050310689294226e-05 1.4746893976996489e-07 0.0011451983675618655 4.1695860403259764e-06 0.0013390228277667614 7.727965311921166e-06']
['59852.31713925706 0.0024922071077020653 6.5075370376917205e-06 0.0011346475625194023 4.164070808566911e-06 4.012994849825183e-05 1.472738783484643e-07 0.0011346475625194023 4.164070808566911e-06 0.001357559545182663 7.725770123145564e-06']
['59852.31734188403 0.002478610186350186 6.50094665280624e-06 0.0011372212257066761 4.165559806543858e-06 4.0220973213387e-05 1.473265408791943e-07 0.0011372212257066761 4.165559806543858e-06 0.00134138896064351 7.721022981738001e-06']
['59852.317544510996 0.0024880174876166436 6.509471513204096e-06 0.001140529395282522 4.167509935052376e-06 4.0337975777960796e-05 1.4739551256625985e-07 0.001140529395282522 4.167509935052376e-06 0.0013474880923341217 7.729253420607704e-06']
['59852.31774713796 0.0024926711007608178 6.5082719249155454e-06 0.0011428673111787645 4.168307059596169e-06 4.042066263827638e-05 1.474237050799053e-07 0.0011428673111787645 4.168307059596169e-06 0.0013498037895820533 7.728673055041413e-06']
['59852.31794976493 0.0024829129292633792 6.503660501622748e-06 0.0011442977651905128 4.169036105068385e-06 4.0471254599795354e-05 1.4744948978893682e-07 0.0011442977651905128 4.169036105068385e-06 0.0013386151640728664 7.725183620195161e-06']
['59852.3181523919 0.002476975913006399 6.4974955619615555e-06 0.0011458848693681025 4.16992676106412e-06 4.052738692758762e-05 1.47480990301007e-07 0.0011458848693681025 4.16992676106412e-06 0.0013310910436382965 7.720475229566429e-06']
['59852.31835501886 0.002478034241886188 6.500123668603393e-06 0.0011374289943435433 4.165965117323205e-06 4.022832152573742e-05 1.473408758156435e-07 0.0011374289943435433 4.165965117323205e-06 0.001340605247542645 7.72054875419434e-06']
['59852.318557645835 0.0024811556051060994 6.501348428350841e-06 0.001139568757067568 4.166474393826874e-06 4.0304000151197935e-05 1.4735888778741229e-07 0.001139568757067568 4.166474393826874e-06 0.0013415868480385314 7.721854716402981e-06']
['59852.3187602728 0.0024895275550970318 6.510099534951421e-06 0.0011423956886216673 4.168950843942122e-06 4.0403982402446237e-05 1.4744647429344833e-07 0.0011423956886216673 4.168950843942122e-06 0.0013471318664753644 7.730559300217575e-06']
['59852.31896289977 0.0024804359097716647 6.503141250543547e-06 0.0011411290774972123 4.167836517812722e-06 4.035918519768352e-05 1.4740706306862376e-07 0.0011411290774972123 4.167836517812722e-06 0.0013393068322744524 7.724099129590088e-06']
['59852.31916552674 0.0024998498626458278 6.516493531897655e-06 0.0011411938626094374 4.167257495403005e-06 4.036147650231672e-05 1.4738658434003102e-07 0.0011411938626094374 4.167257495403005e-06 0.0013586560000363903 7.735032190253413e-06']
['59852.3193681537 0.002478809580757767 6.500315838839398e-06 0.0011376002754253044 4.165204540983352e-06 4.023437935480862e-05 1.47313975930291e-07 0.0011376002754253044 4.165204540983352e-06 0.0013412093053324628 7.720300180232287e-06']
['59852.31957078067 0.0024790420960968183 6.502624114755443e-06 0.0011352861077084996 4.165997551705276e-06 4.015253241452569e-05 1.4734202294725079e-07 0.0011352861077084996 4.165997551705276e-06 0.0013437559883883188 7.72267155708524e-06']
['59852.31977340764 0.002489199863173048 6.510770674250351e-06 0.0011439251826388032 4.169132578178064e-06 4.045807718761438e-05 1.4745290182722148e-07 0.0011439251826388032 4.169132578178064e-06 0.0013452746805342447 7.731222492407267e-06']
['59852.3199760346 0.002475977424270763 6.498253867402175e-06 0.0011406121371346919 4.166481105950264e-06 4.034090217235489e-05 1.4735912518021586e-07 0.0011406121371346919 4.166481105950264e-06 0.001335365287136071 7.719253081189128e-06']
['59852.320178661575 0.0024853892972604287 6.504089693459586e-06 0.0011407332468387256 4.1680426564847674e-06 4.0345185551922305e-05 1.474143537327612e-07 0.0011407332468387256 4.1680426564847674e-06 0.0013446560504217031 7.725008888463741e-06']
['59852.32038128854 0.002491406365977626 6.5104925524158905e-06 0.0011446589827571784 4.168175944073299e-06 4.048403005785456e-05 1.4741906781688735e-07 0.0011446589827571784 4.168175944073299e-06 0.0013467473832204477 7.73047242901843e-06']
['59852.32058391551 0.0024838325369621267 6.505521538608621e-06 0.0011356973187224718 4.165201982016503e-06 4.016707602908736e-05 1.473138854253525e-07 0.0011356973187224718 4.165201982016503e-06 0.001348135218239655 7.72468239090093e-06']
['59852.32078654248 0.0024942813744728487 6.512085106461541e-06 0.00113585246167264 4.164904558063943e-06 4.017256308851072e-05 1.4730336620485384e-07 0.00113585246167264 4.164904558063943e-06 0.0013584289128002087 7.730050608604063e-06']
['59852.32098916944 0.0024803005015676433 6.501889482267636e-06 0.0011443571623745382 4.1700290091705505e-06 4.047335534544944e-05 1.4748460658802038e-07 0.0011443571623745382 4.1700290091705505e-06 0.001335943339193105 7.724228684920355e-06']
['59852.321191796414 0.0024973078988227045 6.5152907241708075e-06 0.0011365946261298716 4.165238238586708e-06 4.019881178672306e-05 1.4731516773921197e-07 0.0011365946261298716 4.165238238586708e-06 0.0013607132726928329 7.732931061677136e-06']
['59852.32139442338 0.002481013505526486 6.500573841368085e-06 0.001140812625864867 4.168206403978812e-06 4.0347993010675246e-05 1.4742014511567143e-07 0.001140812625864867 4.168206403978812e-06 0.0013402008796616189 7.722137326754103e-06']
['59852.321597050344 0.0024821169181451336 6.5036630300502325e-06 0.001144539490414478 4.16927661539467e-06 4.047980388074292e-05 1.4745799610166863e-07 0.001144539490414478 4.16927661539467e-06 0.0013375774277306555 7.725315547219997e-06']
['59852.32179967732 0.002482941589203708 6.503319423542915e-06 0.0011438499531870583 4.16860139697086e-06 4.0455416490034096e-05 1.474341151350428e-07 0.0011438499531870583 4.16860139697086e-06 0.0013390916360166499 7.724661878131492e-06']
['59852.32200230428 0.002482901121696695 6.502683593986133e-06 0.0011381176778630796 4.1661272015852935e-06 4.0252678722706334e-05 1.4734660837375658e-07 0.0011381176778630796 4.1661272015852935e-06 0.0013447834438336153 7.722791579687057e-06']
['59852.32220493125 0.0024882278345435063 6.507681365800151e-06 0.0011391501398475136 4.166702400478784e-06 4.0289194595679035e-05 1.4736695187312546e-07 0.0011391501398475136 4.166702400478784e-06 0.0013490776946959927 7.727310376381823e-06']
['59852.32240755822 0.0024946996183403286 6.506691622835331e-06 0.0011396310836486864 4.16729042571126e-06 4.030620450308038e-05 1.4738774901143909e-07 0.0011396310836486864 4.16729042571126e-06 0.0013550685346916422 7.726793990194136e-06']
['59852.32261018518 0.002487538826658702 6.506893152695159e-06 0.00113619753261263 4.164638742174473e-06 4.018476747647001e-05 1.4729396489090684e-07 0.00113619753261263 4.164638742174473e-06 0.001351341294046072 7.725533920280961e-06']
['59852.322812812155 0.002481274019388591 6.5001799704037815e-06 0.0011431372301139904 4.16749833124153e-06 4.0430209067782005e-05 1.4739510216540322e-07 0.0011431372301139904 4.16749833124153e-06 0.0013381367892746005 7.721423572667117e-06']
['59852.32301543912 0.002483296197471921 6.502686900790655e-06 0.0011408755866392966 4.168056046684023e-06 4.035021979255777e-05 1.4741482731418356e-07 0.0011408755866392966 4.168056046684023e-06 0.0013424206108326245 7.723835066727773e-06']
['59852.323218066085 0.002493024849216449 6.50813329150867e-06 0.0011424967711753937 4.168173889320245e-06 4.0407557466465325e-05 1.4741899514486393e-07 0.0011424967711753937 4.168173889320245e-06 0.001350528078041055 7.728484489966615e-06']
['59852.32342069306 0.0024783448011393787 6.498870936614746e-06 0.0011456520069485026 4.1691722323798095e-06 4.0519151104223246e-05 1.474543043077153e-07 0.0011456520069485026 4.1691722323798095e-06 0.0013326927941908762 7.721225327240662e-06']
['59852.32362332002 0.002483087440675719 6.505312387009573e-06 0.0011372934571027612 4.166029068813014e-06 4.022352787643886e-05 1.4734313763691488e-07 0.0011372934571027612 4.166029068813014e-06 0.001345793983572958 7.724952262297496e-06']
['59852.32382594699 0.0024844108896389092 6.5045063867613744e-06 0.0011356618169338687 4.165843269274848e-06 4.0165820410166295e-05 1.4733656632248747e-07 0.0011356618169338687 4.165843269274848e-06 0.0013487490727050406 7.72417332014126e-06']
['59852.32402857396 0.002481127086865164 6.503168522866286e-06 0.0011419545817922805 4.168278093186191e-06 4.038838143970657e-05 1.474226806027205e-07 0.0011419545817922805 4.168278093186191e-06 0.0013391725050728835 7.724360368272235e-06']
['59852.324231200924 0.0024680881926354794 6.494142908982091e-06 0.0011462329374530619 4.169448542375991e-06 4.053969731786624e-05 1.4746407677476374e-07 0.0011462329374530619 4.169448542375991e-06 0.0013218552551824175 7.717395497822025e-06']
['59852.3244338279 0.0024992813789121524 6.515272157502597e-06 0.0011396877052900472 4.1678057985141475e-06 4.030820708399339e-05 1.4740597659568678e-07 0.0011396877052900472 4.1678057985141475e-06 0.0013595936736221052 7.734298705148172e-06']
['59852.32463645486 0.002487843460625066 6.507564594261287e-06 0.0011392487411114808 4.165994690948483e-06 4.02926819020247e-05 1.4734192176867645e-07 0.0011392487411114808 4.165994690948483e-06 0.001348594719513585 7.72683044420505e-06']
['59852.324839081826 0.0024877926784593906 6.5063335254285125e-06 0.0011409076807649314 4.167338286716831e-06 4.0351354890055325e-05 1.473894417482431e-07 0.0011409076807649314 4.167338286716831e-06 0.0013468849976944592 7.726518254689559e-06']
['59852.3250417088 0.002480211474062995 6.498569506317625e-06 0.0011384340760457285 4.166341821118644e-06 4.026386901931831e-05 1.4735419898700476e-07 0.0011384340760457285 4.166341821118644e-06 0.0013417773980172664 7.719443619772315e-06']
['59852.32524433576 0.002477613806472236 6.4995411464101394e-06 0.0011373671129002302 4.165983303766996e-06 4.022613291738432e-05 1.4734151902951608e-07 0.0011373671129002302 4.165983303766996e-06 0.0013402466935720056 7.720068134488439e-06']
['59852.32544696273 0.002498015526231862 6.515240923965486e-06 0.001139235425467156 4.166489036446837e-06 4.0292210957443645e-05 1.4735940566415605e-07 0.001139235425467156 4.166489036446837e-06 0.001358780100764706 7.733562903872078e-06']
['59852.3256495897 0.0024845778362723703 6.5047075870350335e-06 0.0011440996322304225 4.16918478382244e-06 4.0464247079798066e-05 1.4745474822419033e-07 0.0011440996322304225 4.16918478382244e-06 0.0013404782040419478 7.726145387868889e-06']
['59852.325852216665 0.0024889541471890615 6.507352749902827e-06 0.0011435006187782923 4.167787996022747e-06 4.0443061312712495e-05 1.474053469613522e-07 0.0011435006187782923 4.167787996022747e-06 0.0013454535284107693 7.72761907649822e-06']
['59852.32605484364 0.0024825163891316385 6.5024322965767465e-06 0.001137872705523721 4.1667362969944444e-06 4.0244014598544185e-05 1.473681507171301e-07 0.001137872705523721 4.1667362969944444e-06 0.0013446436836079174 7.722908593286295e-06']
['59852.3262574706 0.0024816831842765065 6.502593942528814e-06 0.0011371928005011538 4.166376796004408e-06 4.0219967877394275e-05 1.4735543597054994e-07 0.0011371928005011538 4.166376796004408e-06 0.0013444903837753527 7.722850742290464e-06']
['59852.32646009757 0.0024908497689131223 6.510261432142264e-06 0.0011426243307364017 4.168228490543563e-06 4.0412068963059335e-05 1.4742092626810613e-07 0.0011426243307364017 4.168228490543563e-06 0.0013482254381767206 7.730306117109343e-06']
['59852.32666272454 0.0024924863321475654 6.509805772602457e-06 0.001143071813999825 4.1683200624448605e-06 4.042789544602038e-05 1.4742416496160386e-07 0.001143071813999825 4.1683200624448605e-06 0.0013494145181477404 7.72997175544572e-06']
['59852.326865351504 0.002473000824171542 6.465755327760326e-06 0.0011392024805113822 4.1455115947893185e-06 4.029104576798556e-05 1.466174804345525e-07 0.0011392024805113822 4.1455115947893185e-06 0.00133379834366016 7.68057669325642e-06']
['59852.32706797847 0.0024823093829999263 6.474342874269676e-06 0.001137805694975702 4.144671486743917e-06 4.02416445852205e-05 1.4658776769051766e-07 0.001137805694975702 4.144671486743917e-06 0.0013445036880242243 7.68735438149137e-06']
['59852.32727060544 0.0024745236943695815 6.469421709427523e-06 0.0011343632278016037 4.1426657000703036e-06 4.011989221473399e-05 1.4651682749854133e-07 0.0011343632278016037 4.1426657000703036e-06 0.0013401604665679778 7.68212837415199e-06']
['59852.327473232406 0.0024871525459865948 6.4754150147037915e-06 0.001138037886283532 4.143505113560851e-06 4.024985667286142e-05 1.4654651567772322e-07 0.001138037886283532 4.143505113560851e-06 0.0013491146597030628 7.68762864859875e-06']
['59852.32767585938 0.0024755761274712572 6.4678912456865726e-06 0.001137245810176508 4.144744692132104e-06 4.0221842711141896e-05 1.465903568014934e-07 0.001137245810176508 4.144744692132104e-06 0.0013383303172947493 7.681961060106088e-06']
['59852.32787848634 0.0024785312727524625 6.471733416029389e-06 0.0011386505689913288 4.143957451732837e-06 4.027152589097093e-05 1.4656251386795008e-07 0.0011386505689913288 4.143957451732837e-06 0.0013398807037611337 7.684771744816078e-06']
['59852.32808111331 0.0024769460384220935 6.471032488802898e-06 0.0011423467390638924 4.145492620239834e-06 4.040225116598356e-05 1.4661680934714287e-07 0.0011423467390638924 4.145492620239834e-06 0.001334599299358201 7.685009468803898e-06']
['59852.32828374028 0.002489427306808066 6.476122132456936e-06 0.0011370111427955322 4.144810810294194e-06 4.0213543050327514e-05 1.465926952531211e-07 0.0011370111427955322 4.144810810294194e-06 0.001352416164012534 7.6889280480201e-06']
['59852.328486367245 0.0024806887946680523 6.472721555807629e-06 0.001136756862226121 4.144069492672143e-06 4.020454971487107e-05 1.4656647650557657e-07 0.001136756862226121 4.144069492672143e-06 0.0013439319324419312 7.68566433687503e-06']
['59852.32868899421 0.002486048739481463 6.474169117452598e-06 0.001139245931900495 4.145686616395709e-06 4.0292582546510345e-05 1.4662367055762026e-07 0.001139245931900495 4.145686616395709e-06 0.0013468028075809678 7.68775541252058e-06']
['59852.32889162118 0.002480021125164956 6.470435256791693e-06 0.0011400351484527633 4.144493598459405e-06 4.032049537216889e-05 1.4658147617945135e-07 0.0011400351484527633 4.144493598459405e-06 0.0013399859767121926 7.68396769904741e-06']
['59852.32909424815 0.0024900450848438817 6.477246516794722e-06 0.0011405413230470244 4.146613218720331e-06 4.0338397636334266e-05 1.4665644241100784e-07 0.0011405413230470244 4.146613218720331e-06 0.0013495037617968573 7.690846743044329e-06']
['59852.32929687512 0.0024907496825318917 6.478637010706424e-06 0.0011362662187677929 4.143504134377599e-06 4.018719675227359e-05 1.4654648104619997e-07 0.0011362662187677929 4.143504134377599e-06 0.0013544834637640988 7.690342256889438e-06']
['59852.329499502084 0.002484871667673749 6.473814292404573e-06 0.0011404142443738412 4.147038866792374e-06 4.0333903147667894e-05 1.4667149663204855e-07 0.0011404142443738412 4.147038866792374e-06 0.0013444574232999076 7.688185927462232e-06']
['59852.32970212905 0.0024872555073386124 6.478970308953839e-06 0.0011350390839100933 4.142549343371951e-06 4.014379573484176e-05 1.4651271222216253e-07 0.0011350390839100933 4.142549343371951e-06 0.001352216423428519 7.690108668060342e-06']
['59852.32990475602 0.002481167320447532 6.473691509503385e-06 0.0011379638962556204 4.144702564030031e-06 4.024723981093217e-05 1.4658886682467383e-07 0.0011379638962556204 4.144702564030031e-06 0.0013432034241919117 7.686822562313594e-06']
['59852.330107382986 0.002492248659177885 6.479893669661607e-06 0.0011414098012950138 4.145945779439657e-06 4.0369113771031e-05 1.466328365752894e-07 0.0011414098012950138 4.145945779439657e-06 0.0013508388578828711 7.692716579737881e-06']
['59852.33031000995 0.002495495086077387 6.483867669772468e-06 0.0011367201151961798 4.145376254214682e-06 4.0203250054546826e-05 1.46612693740896e-07 0.0011367201151961798 4.145376254214682e-06 0.0013587749708812071 7.695757548684054e-06']
['59852.33051263692 0.0024894277359860124 6.4771383066631675e-06 0.0011397211715409652 4.145604162114119e-06 4.030939071049569e-05 1.4662075433395492e-07 0.0011397211715409652 4.145604162114119e-06 0.0013497065644450471 7.690211603888499e-06']
['59852.33071526389 0.0024831213261036086 6.472845494086307e-06 0.001132012053436094 4.141192333982274e-06 4.0036736431991364e-05 1.464647178327871e-07 0.001132012053436094 4.141192333982274e-06 0.0013511092726675145 7.684217770036646e-06']
['59852.33091789085 0.002483694806979462 6.474781560495956e-06 0.0011410131349258396 4.1460244578807735e-06 4.035508456805047e-05 1.4663561925591572e-07 0.0011410131349258396 4.1460244578807735e-06 0.0013426816720536223 7.688453359518024e-06']
['59852.331120517825 0.0024838887585137363 6.473745788970916e-06 0.0011431097348645074 4.14695385443281e-06 4.042923662225605e-05 1.466684899348822e-07 0.0011431097348645074 4.14695385443281e-06 0.001340779023649229 7.688082388412199e-06']
['59852.33132314479 0.00248410474024556 6.47515157209506e-06 0.001143648855731503 4.146520246157421e-06 4.044830412245746e-05 1.4665315417923915e-07 0.001143648855731503 4.146520246157421e-06 0.0013404558845140572 7.689032321001033e-06']
['59852.33152577176 0.002476775950253687 6.470612331431004e-06 0.0011343259493472792 4.142606786403661e-06 4.011857375911698e-05 1.4651474385381647e-07 0.0011343259493472792 4.142606786403661e-06 0.0013424500009064078 7.68309930499565e-06']
['59852.33172839873 0.002490968412242168 6.480069890654035e-06 0.0011374951480465707 4.144547685324014e-06 4.023066123436868e-05 1.4658338911097555e-07 0.0011374951480465707 4.144547685324014e-06 0.0013534732641955973 7.692111628394743e-06']
['59852.33193102569 0.0024823869959355116 6.472580601135603e-06 0.0011386434521313007 4.144247808991388e-06 4.027127418353698e-05 1.4657278315527475e-07 0.0011386434521313007 4.144247808991388e-06 0.001343743543804211 7.685641778051255e-06']
['59852.332133652664 0.0024837593063628525 6.472738208829638e-06 0.0011349022877900673 4.1435678024508506e-06 4.013895756179778e-05 1.465487328436611e-07 0.0011349022877900673 4.1435678024508506e-06 0.0013488570185727852 7.685407865139656e-06']
['59852.33233627963 0.002477792012267961 6.468630346419236e-06 0.0011369669689955148 4.143214662038353e-06 4.021198072174353e-05 1.4653624305649344e-07 0.0011369669689955148 4.143214662038353e-06 0.001340825043272446 7.681758021074696e-06']
['59852.332538906594 0.0024927537754099076 6.478866750229501e-06 0.0011367063140599607 4.144320106513402e-06 4.020276193920248e-05 1.4657534015705292e-07 0.0011367063140599607 4.144320106513402e-06 0.001356047461349947 7.690975459100141e-06']
['59852.332741533566 0.0025028363492121406 6.485003304636376e-06 0.0011403197083187844 4.144412483038603e-06 4.033055961867618e-05 1.4657860730829988e-07 0.0011403197083187844 4.144412483038603e-06 0.0013625166408933562 7.696195338653438e-06']
['59852.33294416053 0.002489879955068773 6.477727550748507e-06 0.0011393357196026182 4.14449428655623e-06 4.029575813687074e-05 1.4658150051589828e-07 0.0011393357196026182 4.14449428655623e-06 0.001350544235466155 7.690109694472731e-06']
['59852.3331467875 0.002487776785957519 6.477749357786028e-06 0.0011412492491471977 4.145301600758987e-06 4.036343540037567e-05 1.466100534150087e-07 0.0011412492491471977 4.145301600758987e-06 0.0013465275368103212 7.69056318506989e-06']
['59852.33334941447 0.002475161864440318 6.468894922298648e-06 0.0011400616385952678 4.1451733154307235e-06 4.0321432269307286e-05 1.4660551624964888e-07 0.0011400616385952678 4.1451733154307235e-06 0.0013351002258450502 7.683037376630427e-06']
['59852.33355204143 0.0024739742956207643 6.464926983874772e-06 0.001137550373111842 4.144479074770431e-06 4.023261442150656e-05 1.4658096250903088e-07 0.001137550373111842 4.144479074770431e-06 0.0013364239225089223 7.679322086489284e-06']
['59852.333754668405 0.0024885846887490455 6.4766901943534245e-06 0.0011399299014340776 4.145491934897797e-06 4.0316773020331216e-05 1.4661678510812665e-07 0.0011399299014340776 4.145491934897797e-06 0.001348654787314968 7.689773680410658e-06']
['59852.33395729537 0.0024891648663748402 6.4777809783806315e-06 0.0011455955705469464 4.1483844474435284e-06 4.051715507482814e-05 1.4671908681248411e-07 0.0011455955705469464 4.1483844474435284e-06 0.0013435692958278938 7.692251941249798e-06']
['59852.334159922335 0.002486004079226516 6.474979716049077e-06 0.0011429099841697172 4.147443143556185e-06 4.042217188659786e-05 1.4668579499767915e-07 0.0011429099841697172 4.147443143556185e-06 0.0013430940950567988 7.689385342943752e-06']
['59852.33436254931 0.002483339336978473 6.471973922583431e-06 0.0011323283512942178 4.142877751801147e-06 4.004792318034909e-05 1.4652432729435352e-07 0.0011323283512942178 4.142877751801147e-06 0.0013510109856842553 7.684392137376181e-06']
['59852.33456517627 0.00248542152154211 6.474293210310892e-06 0.0011419742877689602 4.146127333055759e-06 4.038907839606146e-05 1.4663925772094248e-07 0.0011419742877689602 4.146127333055759e-06 0.00134344723377315 7.688097582301475e-06']
['59852.334767803244 0.0024836211636426035 6.473502601798971e-06 0.0011497565974659845 4.150774204491895e-06 4.066432129760666e-05 1.4680360717849216e-07 0.0011497565974659845 4.150774204491895e-06 0.001333864566176619 7.689939039561586e-06']
['59852.33497043021 0.0024872023888897104 6.476160490708581e-06 0.0011419891668589892 4.145845734207196e-06 4.038960463622298e-05 1.466292981990052e-07 0.0011419891668589892 4.145845734207196e-06 0.0013452132220307211 7.689518291366424e-06']
['59852.335173057174 0.0024927347371545366 6.479477806773853e-06 0.0011381094896993876 4.144586743491336e-06 4.025238912565602e-05 1.4658477051106386e-07 0.0011381094896993876 4.144586743491336e-06 0.001354625247455149 7.691633891625305e-06']
['59852.335375684146 0.0024752532640369613 6.469487875495707e-06 0.001140446065823447 4.145765534801871e-06 4.03350286012237e-05 1.4662646172527396e-07 0.001140446065823447 4.145765534801871e-06 0.0013348071982135143 7.683856143938212e-06']
['59852.33557831111 0.0024784771711082983 6.471702101047292e-06 0.0011361832263933251 4.143023996860235e-06 4.018426149746571e-05 1.4652949965525499e-07 0.0011361832263933251 4.143023996860235e-06 0.0013422939447149732 7.684242052620394e-06']
['59852.335780938076 0.0024890327121759826 6.475918868677679e-06 0.0011371366876045405 4.143356532586105e-06 4.021798328964601e-05 1.465412607007054e-07 0.0011371366876045405 4.143356532586105e-06 0.001351896024571442 7.687972980559931e-06']
['59852.33598356505 0.0024903105893246944 6.481016637112298e-06 0.0011328339329135884 4.141932499101043e-06 4.006580447231781e-05 1.464908958188663e-07 0.0011328339329135884 4.141932499101043e-06 0.001357476656411106 7.69150059985929e-06']
['59852.33618619201 0.002490762990077848 6.479570151485549e-06 0.0011410349751248806 4.145657754911197e-06 4.035585700708057e-05 1.466226497914147e-07 0.0011410349751248806 4.145657754911197e-06 0.0013497280149529674 7.692288838107798e-06']
['59852.33638881898 0.0024804847186958344 6.470904262391098e-06 0.0011395618269189858 4.14508852743898e-06 4.030375504733055e-05 1.4660251748787091e-07 0.0011395618269189858 4.14508852743898e-06 0.0013409228917768486 7.68468352460513e-06']
['59852.33659144595 0.002490547839745655 6.476913281419229e-06 0.0011347183083551997 4.141662813573894e-06 4.0132450620356345e-05 1.4648135764448272e-07 0.0011347183083551997 4.141662813573894e-06 0.0013558295313904553 7.687898055799492e-06']
['59852.336794072915 0.0024788457363819263 6.471992845372258e-06 0.0011405400674687244 4.144933812425763e-06 4.033835322933585e-05 1.4659704556362113e-07 0.0011405400674687244 4.144933812425763e-06 0.0013383056689132019 7.68551674905078e-06']
['59852.33699669989 0.002488028754010599 6.47778819298635e-06 0.0011437068043941448 4.147026072039303e-06 4.0450353637147466e-05 1.4667104411022702e-07 0.0011437068043941448 4.147026072039303e-06 0.0013443219496164541 7.691525538888049e-06']
['59852.33719932685 0.00247548463395231 6.465828425683683e-06 0.0011379668282144977 4.144804307831353e-06 4.0247343507765116e-05 1.4659246527554258e-07 0.0011379668282144977 4.144804307831353e-06 0.0013375178057378123 7.680256504869903e-06']
['59852.33740195382 0.0024811741242373856 6.470720727622758e-06 0.0011417506650188204 4.146062200888088e-06 4.038116935915645e-05 1.4663695414173377e-07 0.0011417506650188204 4.146062200888088e-06 0.0013394234592185653 7.685054229380543e-06']
['59852.33760458079 0.002478411677423472 6.4706550040399795e-06 0.0011382522356320833 4.145029361888874e-06 4.025743773027708e-05 1.4660042493459088e-07 0.0011382522356320833 4.145029361888874e-06 0.001340159441791389 7.684441722872816e-06']
['59852.337807207754 0.0024850035538374624 6.474374719178104e-06 0.0011325139781296774 4.142003684165223e-06 4.0054488386667736e-05 1.464934134754971e-07 0.0011325139781296774 4.142003684165223e-06 0.001352489575707785 7.685943177253579e-06']
['59852.33800983472 0.0024847512464120916 6.47422641770599e-06 0.0011483876681864257 4.1490849996602056e-06 4.061590532836555e-05 1.467438637787459e-07 0.0011483876681864257 4.1490849996602056e-06 0.0013363635782256658 7.689636795202193e-06']
['59852.33821246169 0.0024721867462929596 6.4669069729344715e-06 0.0011344560865481493 4.141342422958651e-06 4.0123176421072225e-05 1.4647002614445247e-07 0.0011344560865481493 4.141342422958651e-06 0.0013377306597448103 7.679297029076654e-06']
['59852.338415088656 0.002480948419464445 6.473138649962681e-06 0.0011455571384137659 4.1479491619783125e-06 4.051579581616831e-05 1.4670369173838517e-07 0.0011455571384137659 4.1479491619783125e-06 0.0013353912810506793 7.68810810485891e-06']
['59852.33861771563 0.0024777428819935175 6.470472503523218e-06 0.001130330072420638 4.140852929416015e-06 3.997724852248102e-05 1.4645271385180313e-07 0.001130330072420638 4.140852929416015e-06 0.0013474128095728795 7.682036019305247e-06']
['59852.33882034259 0.0024859092730429157 6.4754965178676955e-06 0.001139745602552239 4.144792503159894e-06 4.031025478076435e-05 1.4659204777069495e-07 0.001139745602552239 4.144792503159894e-06 0.0013461636704906767 7.688391252217014e-06']
['59852.33902296956 0.0024800419286340153 6.471954051341586e-06 0.0011343155103644264 4.1428589299392775e-06 4.0118204555623224e-05 1.4652366160716358e-07 0.0011343155103644264 4.1428589299392775e-06 0.0013457264182695889 7.684365253946117e-06']
['59852.33922559653 0.002491382374054914 6.48213043809461e-06 0.001132738500567435 4.141880998814506e-06 4.0062429243513106e-05 1.4648907436882786e-07 0.001132738500567435 4.141880998814506e-06 0.001358643873487479 7.692411405067547e-06']
['59852.339428223495 0.00247608136064978 6.46867520822642e-06 0.0011408188454848725 4.146158826427205e-06 4.03482129847348e-05 1.4664037157110698e-07 0.0011408188454848725 4.146158826427205e-06 0.0013352625151649077 7.683384147853297e-06']
['59852.33963085046 0.0024848996406167784 6.472569613104386e-06 0.0011364547685060037 4.143008475400516e-06 4.0193865335130245e-05 1.4652895069591314e-07 0.0011364547685060037 4.143008475400516e-06 0.0013484448721107747 7.684964321564725e-06']
['59852.33983347743 0.0024863629097890395 6.476236929514792e-06 0.0011338048631797481 4.142725428060513e-06 4.010014410593044e-05 1.4651893994407085e-07 0.0011338048631797481 4.142725428060513e-06 0.0013525580466092913 7.687900801877607e-06']
['59852.3400361044 0.0024794585277702545 6.471124654463797e-06 0.0011406294772452253 4.14483571658462e-06 4.034151545331159e-05 1.465935761329512e-07 0.0011406294772452253 4.14483571658462e-06 0.0013388290505250292 7.684732748188758e-06']
['59852.34023873137 0.002488943303775948 6.4787021819529515e-06 0.0011408788682293987 4.1450700863380225e-06 4.0350335855065755e-05 1.466018652673435e-07 0.0011408788682293987 4.1450700863380225e-06 0.0013480644355465493 7.691240991094755e-06']
['59852.340441358334 0.002471401656508745 6.46842286195705e-06 0.0011381713234328095 4.145323541559252e-06 4.025457604661689e-05 1.466108294120793e-07 0.0011381713234328095 4.145323541559252e-06 0.0013332303330759357 7.682720975363741e-06']
['59852.3406439853 0.0024950082146317316 6.479316064685614e-06 0.0011419946883402812 4.1457040825535e-06 4.038979991867649e-05 1.4662428829658678e-07 0.0011419946883402812 4.1457040825535e-06 0.0013530135262914504 7.69209977874662e-06']
['59852.34084661227 0.0024785870702566585 6.468151295431634e-06 0.0011424429841214053 4.1460419028721495e-06 4.040565513857274e-05 1.4663623624627343e-07 0.0011424429841214053 4.1460419028721495e-06 0.0013361440861352533 7.6828799704906e-06']
['59852.341049239236 0.0024820485766848693 6.473111580917192e-06 0.0011473978725997913 4.148564848803534e-06 4.058089847052924e-05 1.467254672054142e-07 0.0011473978725997913 4.148564848803534e-06 0.001334650704085078 7.68841751231894e-06']
['59852.3412518662 0.002485986367956394 6.475960719336651e-06 0.0011413835531553132 4.1448194046125185e-06 4.0368185432990927e-05 1.465929992149531e-07 0.0011413835531553132 4.1448194046125185e-06 0.0013446028148010809 7.688796728698434e-06']
['59852.34145449317 0.0024814726696037763 6.474594510230847e-06 0.001135683058729941 4.1431750690139384e-06 4.0166571685020755e-05 1.465348427397051e-07 0.001135683058729941 4.1431750690139384e-06 0.0013457896108738353 7.686759637481198e-06']
['59852.34165712014 0.0024755447908689087 6.467550308262484e-06 0.001138858841800098 4.144985913627609e-06 4.027889203475476e-05 1.465988882666911e-07 0.001138858841800098 4.144985913627609e-06 0.0013366859490688107 7.681804164001934e-06']
['59852.34185974711 0.002486755646955649 6.475370601953065e-06 0.0011420367633468431 4.146712012785694e-06 4.039128801762648e-05 1.46659936536308e-07 0.0011420367633468431 4.146712012785694e-06 0.0013447188836088059 7.689320187742163e-06']
['59852.342062374075 0.0024962073265065903 6.4840410876692794e-06 0.001138282308669157 4.144585074309474e-06 4.02585013463891e-05 1.465847114758318e-07 0.001138282308669157 4.144585074309474e-06 0.0013579250178374332 7.695477520256445e-06']
['59852.34226500104 0.0024880761729599984 6.479982589368696e-06 0.0011389680829034816 4.1444440663910404e-06 4.028275564844194e-05 1.4657972434089096e-07 0.0011389680829034816 4.1444440663910404e-06 0.0013491080900565168 7.691982252837388e-06']
['59852.34246762801 0.0024813912483666444 6.470880371232267e-06 0.001136673606538503 4.144108806160798e-06 4.0201605147265526e-05 1.4656786693580982e-07 0.001136673606538503 4.144108806160798e-06 0.0013447176418281415 7.684134992053336e-06']
['59852.34267025498 0.0024843884297404955 6.475282543809058e-06 0.0011395804675442592 4.1463320143319055e-06 4.030441432458712e-05 1.4664649684024403e-07 0.0011395804675442592 4.1463320143319055e-06 0.0013448079621962363 7.689041110257638e-06']
['59852.34287288194 0.0024829806362992846 6.472744134464277e-06 0.0011411504245153726 4.145223578290798e-06 4.0359940194008074e-05 1.4660729393467882e-07 0.0011411504245153726 4.145223578290798e-06 0.001341830211783912 7.686305688967858e-06']
['59852.343075508914 0.0024903522237308077 6.476651246734996e-06 0.0011469406784500689 4.1484218590617315e-06 4.056472853522234e-05 1.467204099778099e-07 0.0011469406784500689 4.1484218590617315e-06 0.0013434115452807388 7.691320776861096e-06']
['59852.34327813588 0.002485751516108021 6.475001599904948e-06 0.0011379690517790374 4.144245503794179e-06 4.024742215027351e-05 1.4657270162560128e-07 0.0011379690517790374 4.144245503794179e-06 0.0013477824643289835 7.687679527301454e-06']
['59852.343480762844 0.0024876382350606943 6.476307600001735e-06 0.0011413036075820216 4.146048565323471e-06 4.0365357936731447e-05 1.46636471882287e-07 0.0011413036075820216 4.146048565323471e-06 0.0013463346274786728 7.689751545782286e-06']
['59852.343683389816 0.002494406977492066 6.481456416843311e-06 0.0011403466341890903 4.145027373137822e-06 4.0331511926533124e-05 1.4660035459691078e-07 0.0011403466341890903 4.145027373137822e-06 0.0013540603433029755 7.693538146230327e-06']
['59852.34388601678 0.002481424755047341 6.472925654232109e-06 0.0011380583796806614 4.1446436043633325e-06 4.0250581478517845e-05 1.465867815530298e-07 0.0011380583796806614 4.1446436043633325e-06 0.0013433663753666795 7.686145791774057e-06']
['59852.34408864375 0.0024840072769687148 6.473532427974948e-06 0.0011416665235867785 4.145656850925008e-06 4.037819346475016e-05 1.4662261781944349e-07 0.0011416665235867785 4.145656850925008e-06 0.0013423407533819363 7.687203185922998e-06']
['59852.34429127072 0.0024723447649965197 6.468920785057695e-06 0.0011444910753453305 4.148519686008763e-06 4.047809154794848e-05 1.4672386989829605e-07 0.0011444910753453305 4.148519686008763e-06 0.0013278536896511892 7.684865106724628e-06']
['59852.34449389768 0.002470272808796552 6.464068591646603e-06 0.0011441275921040244 4.147711519001328e-06 4.0465235958040724e-05 1.4669528683739004e-07 0.0011441275921040244 4.147711519001328e-06 0.0013261452166925273 7.680344627838546e-06']
['59852.344696524655 0.0024851902322132143 6.474707883051737e-06 0.0011414162508043687 4.146892999584803e-06 4.036934187576308e-05 1.4666633763491078e-07 0.0011414162508043687 4.146892999584803e-06 0.0013437739814088456 7.688859715254124e-06']
['59852.34489915162 0.0024828509574774693 6.474370008912909e-06 0.0011392890224145025 4.14480021966208e-06 4.029410656168916e-05 1.465923206861319e-07 0.0011392890224145025 4.14480021966208e-06 0.0013435619350629668 7.68744664197559e-06']
['59852.345101778585 0.0024738729308122504 6.469354678004768e-06 0.0011370339850488892 4.142734060292948e-06 4.021435092977932e-05 1.4651924524684012e-07 0.0011370339850488892 4.142734060292948e-06 0.0013368389457633612 7.682108788876494e-06']
['59852.34530440556 0.0024927922870708603 6.479239329502232e-06 0.0011394332417728123 4.144746268193602e-06 4.0299207278081284e-05 1.465904125432663e-07 0.0011394332417728123 4.144746268193602e-06 0.001353359045298048 7.69151896030123e-06']
['59852.34550703252 0.0024819529299714665 6.475170007433351e-06 0.0011380725123181794 4.144414392822705e-06 4.0251081318322266e-05 1.4657867485309547e-07 0.0011380725123181794 4.144414392822705e-06 0.0013438804176532872 7.687912413952205e-06']
['59852.345709659494 0.0024805766505644382 6.469267265613812e-06 0.0011476614506557717 4.148889470980022e-06 4.059022063730698e-05 1.4673694836630868e-07 0.0011476614506557717 4.148889470980022e-06 0.0013329151999086665 7.685356387074791e-06']
['59852.34591228646 0.002488348221245467 6.478392018108947e-06 0.0011376370042480786 4.1447873761425985e-06 4.023567837118606e-05 1.4659186643955143e-07 0.0011376370042480786 4.1447873761425985e-06 0.0013507112169973883 7.690827363406928e-06']
['59852.346114913424 0.002479088331492086 6.470604717026357e-06 0.0011350281443543156 4.142734994675898e-06 4.014340882720237e-05 1.4651927829387688e-07 0.0011350281443543156 4.142734994675898e-06 0.0013440601871377703 7.683162020946588e-06']
['59852.346317540396 0.002484072105826617 6.472999350437801e-06 0.0011386572522165742 4.14474328087928e-06 4.027176226171173e-05 1.4659030688863499e-07 0.0011386572522165742 4.14474328087928e-06 0.0013454148536100427 7.68626160465295e-06']
['59852.34652016736 0.002480914309170698 6.471429586362481e-06 0.0011382524774037788 4.143467940822032e-06 4.025744628120162e-05 1.465452009610274e-07 0.0011382524774037788 4.143467940822032e-06 0.0013426618317669192 7.684251913352896e-06']
['59852.346722794326 0.0024864422469707717 6.4755792138565606e-06 0.0011435282214748912 4.1467463215638125e-06 4.04440375584028e-05 1.4666114996111442e-07 0.0011435282214748912 4.1467463215638125e-06 0.0013429140254958805 7.689514367652496e-06']
['59852.3469254213 0.0024849913557546577 6.475229627864253e-06 0.0011613685791428314 4.167945812056645e-06 4.107501113826504e-05 1.4741092856177306e-07 0.0011613685791428314 4.167945812056645e-06 0.0013236227766118263 7.700673413787365e-06']
['59852.34712804826 0.002479257440943852 6.472611671261861e-06 0.0011372769736873996 4.143412357184464e-06 4.0222944894875785e-05 1.4654323509198873e-07 0.0011372769736873996 4.143412357184464e-06 0.0013419804672564525 7.685217486097852e-06']
['59852.347330675235 0.002482073057255238 6.473077941009115e-06 0.0011402530385889907 4.146178791247132e-06 4.0328201659331456e-05 1.4664107768216906e-07 0.0011402530385889907 4.146178791247132e-06 0.0013418200186662472 7.687101963637945e-06']
['59852.3475333022 0.0024882512804093038 6.475650781165692e-06 0.0011412208560968031 4.1471929102426595e-06 4.036243120163795e-05 1.466769448046183e-07 0.0011412208560968031 4.1471929102426595e-06 0.0013470304243125006 7.68981547726464e-06']
['59852.347735929165 0.002484135767887404 6.477035473888624e-06 0.0011341943523945019 4.143182183464494e-06 4.011391946899912e-05 1.4653509436192138e-07 0.0011341943523945019 4.143182183464494e-06 0.0013499414154929021 7.688819619121601e-06']
['59852.34793855614 0.00248868673460895 6.477220932702388e-06 0.0011455140830779547 4.147769354363399e-06 4.051427304516368e-05 1.4669733234489206e-07 0.0011455140830779547 4.147769354363399e-06 0.0013431726515309953 7.69144860400394e-06']
['59852.3481411831 0.0024895501962619295 6.4788734227339924e-06 0.0011449124794008167 4.148834744022959e-06 4.04929956676084e-05 1.4673501279614492e-07 0.0011449124794008167 4.148834744022959e-06 0.0013446377168611129 7.693414752957294e-06']
['59852.34834381007 0.0024809046165434165 6.4711722390185125e-06 0.0011420776976557353 4.146003551711076e-06 4.0392735772649203e-05 1.4663487985141608e-07 0.0011420776976557353 4.146003551711076e-06 0.0013388269188876812 7.685402760938734e-06']
['59852.34854643704 0.0024890669877638757 6.477790615024108e-06 0.0011354160211068472 4.143183477840386e-06 4.015712716108589e-05 1.4653514014110392e-07 0.0011354160211068472 4.143183477840386e-06 0.0013536509666570286 7.68945645563742e-06']
['59852.348749064004 0.002478628682232416 6.472455211844799e-06 0.001142432940675024 4.1457367450055715e-06 4.040529992432002e-05 1.4662544349452025e-07 0.001142432940675024 4.1457367450055715e-06 0.001336195741557392 7.68633915646625e-06']
['59852.348951690976 0.0024827873099124652 6.469613237627548e-06 0.0011463225430149925 4.148969030617539e-06 4.054286646633509e-05 1.4673976221288234e-07 0.0011463225430149925 4.148969030617539e-06 0.0013364647668974727 7.685690565037669e-06']
['59852.34915431794 0.0024835423281154567 6.473561971117842e-06 0.0011343438055726302 4.142660796103434e-06 4.0119205293901324e-05 1.4651665405619288e-07 0.0011343438055726302 4.142660796103434e-06 0.0013491985225428265 7.685612731947627e-06']
['59852.349356944906 0.0024858061661141 6.478678657583817e-06 0.0011452110654934051 4.147635803483488e-06 4.0503555990402604e-05 1.4669260894873827e-07 0.0011452110654934051 4.147635803483488e-06 0.001340595100620695 7.69260423436499e-06']
['59852.34955957188 0.0024864022619595083 6.477007064020068e-06 0.0011437424953189826 4.146350808395279e-06 4.045161594539446e-05 1.466471615442633e-07 0.0011437424953189826 4.146350808395279e-06 0.0013426597666405258 7.69050359428081e-06']
['59852.34976219884 0.0024913661092725876 6.478956370577264e-06 0.0011368139857437843 4.144405392828671e-06 4.020657004602727e-05 1.4657835654342029e-07 0.0011368139857437843 4.144405392828671e-06 0.0013545521235288033 7.691096912141408e-06']
['59852.34996482581 0.0024833102650457127 6.4734483760717054e-06 0.0011409190006278196 4.146436530673857e-06 4.0351755248307274e-05 1.466501933496786e-07 0.0011409190006278196 4.146436530673857e-06 0.001342391264417893 7.687552912375437e-06']
['59852.35016745278 0.0024752399241835736 6.467455663307585e-06 0.0011437225850466607 4.146593905386226e-06 4.0450911763559266e-05 1.466557593415433e-07 0.0011437225850466607 4.146593905386226e-06 0.001331517339136913 7.682592256070574e-06']
['59852.350370079745 0.0024852786022531953 6.4754701590183695e-06 0.0011384132555079642 4.143689762012689e-06 4.026313264342874e-05 1.4655304628079974e-07 0.0011384132555079642 4.143689762012689e-06 0.001346865346745231 7.687774621055573e-06']
['59852.35057270671 0.0024874368124831146 6.475532875718061e-06 0.0011400223426511849 4.1449892850062334e-06 4.0320042459586343e-05 1.4659900750481845e-07 0.0011400223426511849 4.1449892850062334e-06 0.0013474144698319298 7.68852796036549e-06']
['59852.35077533368 0.002483036136885976 6.4755704603286965e-06 0.0011382364064295863 4.144094404941176e-06 4.025687788676095e-05 1.4656735759685662e-07 0.0011382364064295863 4.144094404941176e-06 0.0013447997304563899 7.688077212394942e-06']
['59852.35097796065 0.002485307026210192 6.476442652257868e-06 0.0011355468660369493 4.141997485280665e-06 4.0161754853842394e-05 1.4649319423480397e-07 0.0011355468660369493 4.141997485280665e-06 0.0013497601601732427 7.687681874014837e-06']
['59852.35118058762 0.0024853161350258945 6.4737737039451886e-06 0.0011451911541207737 4.148181249816775e-06 4.050285176965193e-05 1.467119001665458e-07 0.0011451911541207737 4.148181249816775e-06 0.0013401249809051208 7.688768019079758e-06']
['59852.35138321458 0.002474972952679036 6.468122826593894e-06 0.0011352092709474896 4.143288594273713e-06 4.014981487000882e-05 1.465388578744293e-07 0.0011352092709474896 4.143288594273713e-06 0.0013397636817315465 7.681370533657625e-06']
['59852.35158584155 0.002486174392587764 6.477808649435564e-06 0.0011410768199055755 4.1462779694033855e-06 4.0357336963456175e-05 1.466445853919056e-07 0.0011410768199055755 4.1462779694033855e-06 0.0013450975726821883 7.691139440828131e-06']
['59852.35178846852 0.002486050680921021 6.476293176920853e-06 0.001142599922704339 4.1477474028470015e-06 4.041120570551402e-05 1.4669655596881583e-07 0.001142599922704339 4.1477474028470015e-06 0.001343450758216682 7.69065548774977e-06']
['59852.351991095486 0.0024857432944043164 6.4763441209274936e-06 0.001143488354117575 4.146780524095499e-06 4.044262753907282e-05 1.46662359628222e-07 0.001143488354117575 4.146780524095499e-06 0.0013422549402867415 7.690176973756185e-06']
['59852.35219372245 0.0024842848789577345 6.471356689241205e-06 0.0011448706705028762 4.148279363058357e-06 4.049151698032563e-05 1.4671537021263036e-07 0.0011448706705028762 4.148279363058357e-06 0.0013394142084548583 7.686786004134806e-06']
['59852.35239634942 0.002483750771254868 6.4753183558602546e-06 0.0011341541800928192 4.142905946019076e-06 4.011249866446841e-05 1.465253244608313e-07 0.0011341541800928192 4.142905946019076e-06 0.0013495965911620488 7.687224303173479e-06']
['59852.35259897639 0.0024788569881063513 6.46984656313753e-06 0.001147528250042139 4.149186298706183e-06 4.058550962928864e-05 1.467474464996121e-07 0.001147528250042139 4.149186298706183e-06 0.0013313287380642123 7.686004260466788e-06']
['59852.35280160336 0.002499222176521784 6.4830703496530325e-06 0.0011440059934745644 4.147329603190569e-06 4.046093528627366e-05 1.466817793286951e-07 0.0011440059934745644 4.147329603190569e-06 0.0013552161830472195 7.696138252139909e-06']
['59852.353004230325 0.0024935704962795895 6.4826946343647125e-06 0.0011405426756347457 4.145852106278146e-06 4.033844547433911e-05 1.4662952356491396e-07 0.0011405426756347457 4.145852106278146e-06 0.0013530278206448439 7.695025627608525e-06']
['59852.35320685729 0.0024791293401634495 6.471832877867527e-06 0.0011394504430146375 4.14424573451076e-06 4.029981564756213e-05 1.4657270978553113e-07 0.0011394504430146375 4.14424573451076e-06 0.001339678897148812 7.685010963366135e-06']
['59852.35340948426 0.0024932074534126767 6.483186316954054e-06 0.0011437998330527876 4.147478129259836e-06 4.045364385289685e-05 1.4668703236382885e-07 0.0011437998330527876 4.147478129259836e-06 0.001349407620359889 7.696315979287034e-06']
['59852.35361211123 0.0024805646726225932 6.47238906412153e-06 0.0011436708610699047 4.148186953405658e-06 4.04490824020977e-05 1.4671210188973785e-07 0.0011436708610699047 4.148186953405658e-06 0.0013368938115526886 7.687605296694472e-06']
['59852.35381473819 0.0024931781449310368 6.480931637214571e-06 0.0011363742474613302 4.144083672730275e-06 4.019101748573409e-05 1.4656697802254213e-07 0.0011363742474613302 4.144083672730275e-06 0.0013568038974697066 7.69258762529478e-06']
['59852.35401736516 0.0024957474495262756 6.479067271080625e-06 0.0011339924272636213 4.141490994323869e-06 4.0106777828395984e-05 1.4647528078160278e-07 0.0011339924272636213 4.141490994323869e-06 0.0013617550222626543 7.689620300070339e-06']
['59852.35421999213 0.002491894036011193 6.479078247647797e-06 0.0011429034792465925 4.147181572527394e-06 4.042194182200458e-05 1.4667654381496766e-07 0.0011429034792465925 4.147181572527394e-06 0.0013489905567646004 7.692695882111397e-06']
['59852.3544226191 0.0024917586913407253 6.479093092032621e-06 0.001137323870462087 4.143563614208779e-06 4.0224603528988355e-05 1.4654858471489922e-07 0.001137323870462087 4.143563614208779e-06 0.0013544348208786383 7.69075852697377e-06']
['59852.354625246066 0.002495734722102529 6.481470133607501e-06 0.0011409677009037473 4.1464045003340855e-06 4.0353477668228124e-05 1.4664906050814447e-07 0.0011409677009037473 4.1464045003340855e-06 0.0013547670211987819 7.694291739545414e-06']
['59852.35482787303 0.00248577628242693 6.4785206711115526e-06 0.0011479385076680413 4.150112216336857e-06 4.0600019524644973e-05 1.4678019413690491e-07 0.0011479385076680413 4.150112216336857e-06 0.0013378377747588885 7.693806697221351e-06']
['59852.3550305 0.0024851323281725956 6.474833607141512e-06 0.0011431607136376538 4.147456082760541e-06 4.043103962753139e-05 1.466862526284198e-07 0.0011431607136376538 4.147456082760541e-06 0.0013419716145349418 7.689269288989467e-06']
['59852.35523312697 0.0024909386653338217 6.477706695622159e-06 0.0011449393416127136 4.147566915908712e-06 4.049394572400968e-05 1.4669017254917308e-07 0.0011449393416127136 4.147566915908712e-06 0.0013459993237211081 7.69174852399951e-06']
['59852.35543575393 0.002485311268042098 6.475883065380716e-06 0.0011401333037391243 4.14520485494405e-06 4.0323966905283324e-05 1.4660663173174858e-07 0.0011401333037391243 4.14520485494405e-06 0.0013451779643029738 7.68893911836584e-06']
['59852.355638380905 0.002483162180569806 6.476243752678415e-06 0.001138143777340683 4.144979995453537e-06 4.025360180290027e-05 1.465986789541005e-07 0.001138143777340683 4.144979995453537e-06 0.0013450184032291232 7.689121686305674e-06']
['59852.35584100787 0.002483590924464001 6.473029452408669e-06 0.0011458177114197928 4.148523512236023e-06 4.052501170104508e-05 1.4672400522340312e-07 0.0011458177114197928 4.148523512236023e-06 0.0013377732130442081 7.688326061199875e-06']
['59852.356043634834 0.002488372419350642 6.4769915328580225e-06 0.0011475803566044418 4.14878135299977e-06 4.058735252194598e-05 1.4673312447497666e-07 0.0011475803566044418 4.14878135299977e-06 0.0013407920627462 7.691801221541876e-06']
['59852.35624626181 0.002497325266881736 6.484092648205724e-06 0.0011378174671310423 4.143924991626964e-06 4.024206094004568e-05 1.465613658265494e-07 0.0011378174671310423 4.143924991626964e-06 0.0013595077997506934 7.69516548273954e-06']
['59852.35644888877 0.002491977241840168 6.481909763288296e-06 0.0011453911665606428 4.148302592747132e-06 4.050992576264861e-05 1.4671619179480705e-07 0.0011453911665606428 4.148302592747132e-06 0.0013465860752795251 7.695685062449263e-06']
['59852.35665151574 0.0024892114038120956 6.47747166302637e-06 0.0011420005092814636 4.1453741232645246e-06 4.039000579235708e-05 1.4661261837395132e-07 0.0011420005092814636 4.1453741232645246e-06 0.001347210894530632 7.690368376556531e-06']
['59852.35685414271 0.0024864880526722826 6.473399748302013e-06 0.0011443665081748797 4.147695735892469e-06 4.047368588552088e-05 1.4669472862410287e-07 0.0011443665081748797 4.147695735892469e-06 0.0013421215444974028 7.68819121893161e-06']
['59852.35705676967 0.0024813720809193558 6.47237484878929e-06 0.0011397468070856506 4.144800512564854e-06 4.031029738241914e-05 1.4659233104544843e-07 0.0011397468070856506 4.144800512564854e-06 0.0013416252738337052 7.68576655072206e-06']
['59852.357259396646 0.0024838040534262765 6.471895439703391e-06 0.0011376997256085626 4.144103794117865e-06 4.0237896685532386e-05 1.4656768967105254e-07 0.0011376997256085626 4.144103794117865e-06 0.0013461043278177138 7.684987107268017e-06']
['59852.35746202361 0.0024902200242745962 6.475190765991777e-06 0.0011424484989891372 4.14556509123831e-06 4.040585018711942e-05 1.466193724843958e-07 0.0011424484989891372 4.14556509123831e-06 0.001347771525285459 7.688550278282562e-06']
['59852.357664650575 0.002496353008325632 6.481696337164489e-06 0.001141463055473578 4.1453735547510215e-06 4.0370997252310734e-05 1.4661259826689928e-07 0.001141463055473578 4.1453735547510215e-06 0.001354889952852054 7.6939267812763e-06']
['59852.35786727755 0.0024905935198558746 6.477347447219568e-06 0.0011380011831739845 4.144390230157316e-06 4.024855856590335e-05 1.4657782027362104e-07 0.0011380011831739845 4.144390230157316e-06 0.0013525923366818902 7.689733436981106e-06']
['59852.35806990451 0.002480457495789441 6.472271112421613e-06 0.001135065771530353 4.142340279345861e-06 4.0144739616327026e-05 1.4650531809479028e-07 0.001135065771530353 4.142340279345861e-06 0.0013453917242590879 7.684352695092702e-06']
['59852.358272531485 0.002477891547169493 6.472252621557114e-06 0.001143806713364122 4.145875730640637e-06 4.045388719413215e-05 1.466303591058179e-07 0.001143806713364122 4.145875730640637e-06 0.0013340848338053712 7.686243527963966e-06']
['59852.35847515845 0.0024862645128020905 6.4767614870972836e-06 0.001138608001349854 4.144615876314432e-06 4.0270020368625046e-05 1.4658580087390875e-07 0.001138608001349854 4.144615876314432e-06 0.0013476565114522365 7.689361489938176e-06']
['59852.358677785414 0.002483433211232693 6.473665319480888e-06 0.0011396423294102538 4.145085157765499e-06 4.030660224053422e-05 1.4660239831005066e-07 0.0011396423294102538 4.145085157765499e-06 0.0013437908818224392 7.687006805888585e-06']
['59852.35888041239 0.002486449661567039 6.477941348880705e-06 0.0011364575615103348 4.143512890530173e-06 4.019396411745144e-05 1.4654679073174766e-07 0.0011364575615103348 4.143512890530173e-06 0.0013499921000567042 7.689760932143995e-06']
['59852.35908303935 0.0024797380637834195 6.47046938152607e-06 0.0011498970473234633 4.150502056820432e-06 4.066928869517873e-05 1.4679398192356676e-07 0.0011498970473234633 4.150502056820432e-06 0.0013298410164599562 7.687238863267942e-06']
['59852.359285666316 0.002482610567078023 6.473205473353642e-06 0.0011421104254918672 4.146023462095899e-06 4.039389328307078e-05 1.4663558403723016e-07 0.0011421104254918672 4.146023462095899e-06 0.0013405001415861559 7.68712557777647e-06']
['59852.35948829329 0.0024907864194442333 6.481922165225767e-06 0.0011413588793644988 4.1463292379151e-06 4.03673127761525e-05 1.4664639864458656e-07 0.0011413588793644988 4.1463292379151e-06 0.0013494275400797345 7.694631966847713e-06']
['59852.35969092025 0.002481405512630505 6.4722392059524406e-06 0.001137437918006466 4.144265275927647e-06 4.022863713575178e-05 1.4657340092177394e-07 0.001137437918006466 4.144265275927647e-06 0.0013439675946240392 7.685363687967378e-06']
['59852.359893547226 0.0024936067320008104 6.480370420919793e-06 0.0011430664484907921 4.147098070242657e-06 4.04277056799571e-05 1.4667359052577313e-07 0.0011430664484907921 4.147098070242657e-06 0.0013505402835100183 7.693739220726326e-06']
['59852.36009617419 0.002496384147732105 6.4813762615321456e-06 0.0011418269416211715 4.146665993501543e-06 4.038386709211344e-05 1.466583089370746e-07 0.0011418269416211715 4.146665993501543e-06 0.0013545572061109336 7.694353585923547e-06']
['59852.360298801155 0.0024942435223187253 6.480588561159603e-06 0.0011449544755317846 4.146255405433919e-06 4.04944809769049e-05 1.4664378735473308e-07 0.0011449544755317846 4.146255405433919e-06 0.0013492890467869407 7.693468787622569e-06']
['59852.36050142813 0.002483478948809812 6.473243772086396e-06 0.0011428145591020776 4.14657800678079e-06 4.0418796915217916e-05 1.4665519704340034e-07 0.0011428145591020776 4.14657800678079e-06 0.0013406643897077343 7.68745693315894e-06']
['59852.36070405509 0.0024861555119055564 6.475703804886423e-06 0.001137397649234144 4.143660830780143e-06 4.022721291927016e-05 1.465520230477621e-07 0.001137397649234144 4.143660830780143e-06 0.0013487578626714125 7.68795583033371e-06']
['59852.36090668206 0.0024901088074645813 6.478520527265559e-06 0.0011396304165319328 4.145005991677471e-06 4.0306180908651723e-05 1.4659959838244292e-07 0.0011396304165319328 4.145005991677471e-06 0.0013504783909326485 7.691053431958678e-06']
['59852.36110930903 0.0024901615868750306 6.4800694756264515e-06 0.0011446337163530987 4.147978539299359e-06 4.048313644160936e-05 1.4670473074857616e-07 0.0011446337163530987 4.147978539299359e-06 0.0013455278705219319 7.693960382756965e-06']
['59852.361311935994 0.00248911026031327 6.479238919663674e-06 0.0011449761998113307 4.14785300827265e-06 4.049524931612154e-05 1.467002909967068e-07 0.0011449761998113307 4.14785300827265e-06 0.0013441340605019395 7.693193196347077e-06']
['59852.36151456297 0.0024883420709597022 6.477305729770457e-06 0.0011427581647553411 4.147990785356725e-06 4.041680237320779e-05 1.4670516386425686e-07 0.0011427581647553411 4.147990785356725e-06 0.0013455839062043611 7.691639426827125e-06']
['59852.36171718993 0.002485462860495671 6.47460343938339e-06 0.0011394032978823726 4.145522892298951e-06 4.029814822959709e-05 1.4661788000221977e-07 0.0011394032978823726 4.145522892298951e-06 0.0013460595626132985 7.688032891959418e-06']
['59852.361919816896 0.002486683113927569 6.4740697013807494e-06 0.001141336409716201 4.14618183986633e-06 4.0366518074908914e-05 1.4664118550501682e-07 0.001141336409716201 4.14618183986633e-06 0.0013453467042113681 7.687938758053004e-06']
['59852.36212244387 0.0024869754124290325 6.476619567126046e-06 0.0011364294517778423 4.144029098704979e-06 4.019296993903474e-05 1.4656504786123316e-07 0.0011364294517778423 4.144029098704979e-06 0.0013505459606511902 7.688925684918119e-06']
['59852.36232507083 0.002494492575872259 6.481985749280741e-06 0.0011429345340209557 4.14701246587509e-06 4.042304015997047e-05 1.4667056289060679e-07 0.0011429345340209557 4.14701246587509e-06 0.0013515580418513031 7.695053713003048e-06']
['59852.3625276978 0.002494735405919195 6.480439475981625e-06 0.0011418829671308462 4.147250917989e-06 4.038584858918099e-05 1.4667899640896667e-07 0.0011418829671308462 4.147250917989e-06 0.0013528524387883488 7.69387977412057e-06']
['59852.36273032477 0.002499861808881083 6.481378856059828e-06 0.0011405735118480756 4.144880544873918e-06 4.033953608228971e-05 1.4659516160935836e-07 0.0011405735118480756 4.144880544873918e-06 0.0013592882970330075 7.69339369895066e-06']
['59852.362932951735 0.002492059558314826 6.477126656903639e-06 0.0011372536215333176 4.144285421772614e-06 4.02221189813749e-05 1.465741134352871e-07 0.0011372536215333176 4.144285421772614e-06 0.0013548059367815082 7.68949097058373e-06']
['59852.3631355787 0.0024892792985091545 6.476546012721266e-06 0.0011417143237741362 4.14754544898128e-06 4.0379884050549875e-05 1.466894133119256e-07 0.0011417143237741362 4.14754544898128e-06 0.0013475649747350183 7.69075948825999e-06']
['59852.36333820567 0.0024824497329937406 6.470874921252746e-06 0.0011412234543554816 4.145649493909192e-06 4.0362523096240644e-05 1.4662235761823603e-07 0.0011412234543554816 4.145649493909192e-06 0.001341226278638259 7.684961416483967e-06']
['59852.36354083264 0.002500734984832791 6.484773518653859e-06 0.001147768310232603 4.146954717254225e-06 4.05940000217224e-05 1.4666852045094738e-07 0.001147768310232603 4.146954717254225e-06 0.001352966674600188 7.697371045700696e-06']
['59852.36374345961 0.002483787842832101 6.47448401999493e-06 0.001139996081543917 4.144625005346046e-06 4.031911366291239e-05 1.4658612374735475e-07 0.001139996081543917 4.144625005346046e-06 0.001343791761288184 7.687448195604925e-06']
['59852.363946086574 0.002481434657962774 6.4698895861946285e-06 0.0011408450825046502 4.145332306657411e-06 4.034914092948805e-05 1.4661113941401233e-07 0.0011408450825046502 4.145332306657411e-06 0.0013405895754581237 7.683960644756541e-06']
['59852.36414871354 0.0024858425339718063 6.472876614772751e-06 0.0011428227779441205 4.14701899884825e-06 4.0419087597292945e-05 1.4667079394726711e-07 0.0011428227779441205 4.14701899884825e-06 0.0013430197560276858 7.687385657483322e-06']
['59852.36435134051 0.0024832225407704026 6.473956037103782e-06 0.0011392633173465017 4.145734602819998e-06 4.029319743088142e-05 1.4662536773020403e-07 0.0011392633173465017 4.145734602819998e-06 0.001343959223423901 7.687601847609668e-06']
['59852.364553967476 0.0024841626102301124 6.4746684565339e-06 0.001146266840601856 4.148119461694503e-06 4.054089639647002e-05 1.4670971485874936e-07 0.001146266840601856 4.148119461694503e-06 0.0013378957696282563 7.689488064268244e-06']
['59852.36475659444 0.002479640803655876 6.4713608302355e-06 0.00114054038767987 4.145559914228167e-06 4.0338364554488436e-05 1.4661918938511697e-07 0.00114054038767987 4.145559914228167e-06 0.0013391004159760062 7.685322244223838e-06']
['59852.36495922141 0.0024966341019099047 6.483295242893167e-06 0.0011427982162650902 4.146548117385903e-06 4.041821890559776e-05 1.4665413992230203e-07 0.0011427982162650902 4.146548117385903e-06 0.0013538358856448145 7.69590660652257e-06']
['59852.36516184838 0.002496308267696913 6.4808999763455945e-06 0.001142024610178504 4.14583752447454e-06 4.039085818722306e-05 1.4662900783910883e-07 0.001142024610178504 4.14583752447454e-06 0.0013542836575184088 7.693505916208651e-06']
['59852.36536447535 0.0024820768755465066 6.473807969359535e-06 0.0011448764539863376 4.146495571719378e-06 4.049172152921034e-05 1.466522814995097e-07 0.0011448764539863376 4.146495571719378e-06 0.001337200421560169 7.687887560990433e-06']
['59852.365567102315 0.002493729382864518 6.482287334958523e-06 0.0011369533520615906 4.144395700238085e-06 4.021149912122269e-05 1.4657801373815292e-07 0.0011369533520615906 4.144395700238085e-06 0.0013567760308029273 7.693897894638036e-06']
['59852.36576972928 0.0024895043510267186 6.477335213643786e-06 0.0011447535648772076 4.14707005940882e-06 4.04873752160614e-05 1.4667259984518084e-07 0.0011447535648772076 4.14707005940882e-06 0.001344750786149511 7.691167762281282e-06']
['59852.36597235625 0.002501784902770759 6.482744935286932e-06 0.0011401728094693926 4.144633279664709e-06 4.0325364134672804e-05 1.4658641639151386e-07 0.0011401728094693926 4.144633279664709e-06 0.0013616120933013665 7.694411408216526e-06']
['59852.36617498322 0.00248553238239784 6.476423043265401e-06 0.0011416240545585943 4.146894383616341e-06 4.037669143013598e-05 1.4666638658501315e-07 0.0011416240545585943 4.146894383616341e-06 0.0013439083278392455 7.690304835584076e-06']
['59852.36637761018 0.0024894909771818064 6.4749571857780555e-06 0.0011408490198265015 4.1468054569893e-06 4.034928018376254e-05 1.46663241448954e-07 0.0011408490198265015 4.1468054569893e-06 0.0013486419573553049 7.6890224382411e-06']
['59852.366580237154 0.002493012443786626 6.4766034810499734e-06 0.0011432321471044249 4.147549698502063e-06 4.043356606960668e-05 1.4668956360797855e-07 0.0011432321471044249 4.147549698502063e-06 0.0013497802966822012 7.690810175286684e-06']
['59852.36678286412 0.0024892652423595106 6.475670414953209e-06 0.0011386358954349179 4.144778429431716e-06 4.027100692007415e-05 1.4659155001438225e-07 0.0011386358954349179 4.144778429431716e-06 0.0013506293469245927 7.68853012949697e-06']
['59852.36698549109 0.002499394336572838 6.4857714747744756e-06 0.0011469675834169712 4.148477767287601e-06 4.056568010377262e-05 1.467223873268114e-07 0.0011469675834169712 4.148477767287601e-06 0.0013524267531558668 7.699032368335504e-06']
['59852.367188118056 0.0024867270074791746 6.476672835457252e-06 0.001147983495681386 4.149959488171594e-06 4.060161065013468e-05 1.4677479248302692e-07 0.001147983495681386 4.149959488171594e-06 0.0013387435117977887 7.69216840500878e-06']
['59852.36739074502 0.0024896602608749816 6.476678346626017e-06 0.001136761509022808 4.144242087271607e-06 4.0204714061684906e-05 1.4657258079083338e-07 0.001136761509022808 4.144242087271607e-06 0.0013528987518521736 7.689089990601465e-06']
['59852.36759337199 0.0024951748718874006 6.4828976576718e-06 0.001142272369716208 4.147681590578371e-06 4.039962088836167e-05 1.4669422833595612e-07 0.001142272369716208 4.147681590578371e-06 0.0013529025021711927 7.696182470333538e-06']
['59852.36779599896 0.0024982806590986987 6.485178682970511e-06 0.0011417496488672605 4.14644234507038e-06 4.038113342014674e-05 1.466503989918892e-07 0.0011417496488672605 4.14644234507038e-06 0.001356531010231438 7.697436370055154e-06']
['59852.36799862592 0.002494915856393144 6.480797635175694e-06 0.0011443458783873864 4.147360031632679e-06 4.0472956256042105e-05 1.4668285551468895e-07 0.0011443458783873864 4.147360031632679e-06 0.0013505699780057574 7.694240262695408e-06']
['59852.368201252895 0.0024866380993393868 6.478371142752369e-06 0.001144789047233697 4.148243046545018e-06 4.048863014771203e-05 1.467140857787162e-07 0.001144789047233697 4.148243046545018e-06 0.0013418490521056898 7.692672684864197e-06']
['59852.36840387986 0.00250134039850678 6.484062823750782e-06 0.0011456067936050209 4.147322250414311e-06 4.0517552009310175e-05 1.4668151927743134e-07 0.0011456067936050209 4.147322250414311e-06 0.0013557336049017591 7.69697034885341e-06']
['59852.36860650683 0.002503392709899247 6.485625131093585e-06 0.001147789106605416 4.1479471371941865e-06 4.0594735542951645e-05 1.4670362012629577e-07 0.001147789106605416 4.1479471371941865e-06 0.001355603603293831 7.698623175219718e-06']
['59852.3688091338 0.002492103957646283 6.480778814524922e-06 0.0011462049019887678 4.148146823216304e-06 4.0538705766149736e-05 1.4671068257462605e-07 0.0011462049019887678 4.148146823216304e-06 0.001345899055657515 7.694648537116855e-06']
['59852.36901176076 0.0024986819008652405 6.481743151181124e-06 0.0011513407268463984 4.149373732480084e-06 4.0720348413471105e-05 1.4675407561330516e-07 0.0011513407268463984 4.149373732480084e-06 0.001347341174018842 7.696122182611131e-06']
['59852.369214387734 0.0024963118710758 6.481422555675971e-06 0.0011548448914794902 4.151845938329673e-06 4.0844282885196513e-05 1.468415120091502e-07 0.0011548448914794902 4.151845938329673e-06 0.0013414669795963096 7.697185397328678e-06']
['59852.3694170147 0.002495312281511334 6.481720765188305e-06 0.0011426654735743344 4.146690829169547e-06 4.0413524093288185e-05 1.4665918731914746e-07 0.0011426654735743344 4.146690829169547e-06 0.0013526468079369997 7.694657166540435e-06']
['59852.369619641664 0.002496729240766806 6.4845188950487535e-06 0.00114444282231107 4.148361232759439e-06 4.0476384945965874e-05 1.467182657609896e-07 0.00114444282231107 4.148361232759439e-06 0.0013522864184557358 7.697914407013481e-06']
['59852.369822268636 0.0024955626932384547 6.550619748734649e-06 0.001150258770578646 4.200105185578813e-06 4.068208203831064e-05 1.4854833373128233e-07 0.001150258770578646 4.200105185578813e-06 0.0013453039226598087 7.7814846052947e-06']
['59852.3700248956 0.002492108150677782 6.5470781032066805e-06 0.0011452101714326324 4.196730561585832e-06 4.0503524369471186e-05 1.4842898082249135e-07 0.0011452101714326324 4.196730561585832e-06 0.0013468979792451497 7.776681753552535e-06']
['59852.370227522566 0.0025069983872568267 6.556900566831143e-06 0.001143351060077264 4.1974562403684345e-06 4.043777175570115e-05 1.4845464645923538e-07 0.001143351060077264 4.1974562403684345e-06 0.0013636473271795627 7.785344175636583e-06']
['59852.37043014954 0.002495395603578649 6.549013034777886e-06 0.0011484503175197666 4.199596121241389e-06 4.0618121095272796e-05 1.485303292633595e-07 0.0011484503175197666 4.199596121241389e-06 0.0013469452860588823 7.77985728090409e-06']
['59852.3706327765 0.0024949705198746034 6.549898779092834e-06 0.0011521021511430442 4.201372962409976e-06 4.074727828916031e-05 1.485931721644861e-07 0.0011521021511430442 4.201372962409976e-06 0.0013428683687315593 7.781562104464075e-06']
['59852.370835403475 0.0025021876393130807 6.5515304850880756e-06 0.001148883788422304 4.19965167077414e-06 4.06334519923451e-05 1.4853229392618699e-07 0.001148883788422304 4.19965167077414e-06 0.0013533038508907766 7.782006544129504e-06']
['59852.37103803044 0.002512319845151666 6.561226186318462e-06 0.0011556142520597066 4.202862422765305e-06 4.0871493449499064e-05 1.486458510485061e-07 0.0011556142520597066 4.202862422765305e-06 0.0013567055930919594 7.791902310265688e-06']
['59852.371240657405 0.0025113455222136264 6.559245441735503e-06 0.0011481465620384402 4.198698446252032e-06 4.060737794275183e-05 1.4849858050517145e-07 0.0011481465620384402 4.198698446252032e-06 0.0013631989601751862 7.787988790919464e-06']
['59852.37144328438 0.0025074764682648867 6.557308528060654e-06 0.0011505274575210605 4.202644752144993e-06 4.069158489498387e-05 1.486381525251309e-07 0.0011505274575210605 4.202644752144993e-06 0.0013569490107438263 7.788486248617816e-06']
['59852.37164591134 0.002510198616671451 6.5563413746992526e-06 0.0011445259273771906 4.197194158759815e-06 4.047932418642567e-05 1.4844537721845644e-07 0.0011445259273771906 4.197194158759815e-06 0.0013656726892942602 7.784731917537097e-06']
['59852.37184853831 0.0025183979081580387 6.565107771394047e-06 0.0011589752503170273 4.203119267922896e-06 4.0990364446471474e-05 1.4865493508771495e-07 0.0011589752503170273 4.203119267922896e-06 0.0013594226578410114 7.795309591696997e-06']
['59852.37205116528 0.0025115478864065925 6.5613527495575425e-06 0.0011488672657610653 4.199407807989332e-06 4.063286762274305e-05 1.4852366904448956e-07 0.0011488672657610653 4.199407807989332e-06 0.0013626806206455272 7.790146073208645e-06']
['59852.372253792244 0.0025096023477334164 6.558884545007585e-06 0.0011474100256426856 4.200108706161534e-06 4.0581328296495955e-05 1.4854845824642513e-07 0.0011474100256426856 4.200108706161534e-06 0.0013621923220907307 7.788445263228939e-06']
['59852.372456419216 0.0025177694079831126 6.560940219557859e-06 0.0011584725182333957 4.204625148014613e-06 4.0972583936213504e-05 1.4870819470111506e-07 0.0011584725182333957 4.204625148014613e-06 0.001359296889749717 7.792612475924157e-06']
['59852.37265904618 0.0025146784110305596 6.561079519479744e-06 0.0011521659564405807 4.200400788897624e-06 4.074953493993773e-05 1.4855878856003415e-07 0.0011521659564405807 4.200400788897624e-06 0.001362512454589979 7.790451286562822e-06']
['59852.372861673146 0.0025113311510968385 6.560296048659064e-06 0.0011569541034876785 4.204740868554389e-06 4.091888100011472e-05 1.4871228747798675e-07 0.0011569541034876785 4.204740868554389e-06 0.00135437704760916 7.79213257187936e-06']
['59852.37306430012 0.0025174209080675402 6.563961994729071e-06 0.0011592125046113006 4.204933115404771e-06 4.0998755600627785e-05 1.4871908681943833e-07 0.0011592125046113006 4.204933115404771e-06 0.0013582084034562396 7.795322929377289e-06']
['59852.37326692708 0.0025135544230565827 6.561685805821628e-06 0.001153962675777815 4.201975066260699e-06 4.081308088746431e-05 1.4861446723206327e-07 0.001153962675777815 4.201975066260699e-06 0.0013595917472787678 7.79181076976319e-06']
['59852.37346955405 0.002519363771800111 6.5652815036724976e-06 0.0011570717609405202 4.20321418037251e-06 4.0923042281272804e-05 1.4865829192894096e-07 0.0011570717609405202 4.20321418037251e-06 0.0013622920108595908 7.795507082194767e-06']
['59852.37367218102 0.0025233746609850945 6.566075274457343e-06 0.0011574832353750046 4.20363944247663e-06 4.093759521242928e-05 1.4867333249915883e-07 0.0011574832353750046 4.20363944247663e-06 0.0013658914256100899 7.79640488123759e-06']
['59852.373874807985 0.002528276042143622 6.571014389084732e-06 0.001157430886380496 4.204450200913573e-06 4.0935743745486625e-05 1.4870200721313504e-07 0.001157430886380496 4.204450200913573e-06 0.0013708451557631258 7.801001960871487e-06']
['59852.37407743496 0.002511239142094318 6.55802411547453e-06 0.0011574855089826314 4.2044030562560835e-06 4.0937675624849826e-05 1.4870033981196175e-07 0.0011574855089826314 4.2044030562560835e-06 0.0013537536331116864 7.79003757106479e-06']
['59852.37428006192 0.002514565677701509 6.562955628465914e-06 0.0011605522016399842 4.2059235057571245e-06 4.1046137690485674e-05 1.487541147128089e-07 0.0011605522016399842 4.2059235057571245e-06 0.0013540134760615247 7.795009885657152e-06']
['59852.37448268889 0.002532485505003288 6.57531076087495e-06 0.0011614175205309368 4.20505534229683e-06 4.107674208578477e-05 1.4872340971144942e-07 0.0011614175205309368 4.20505534229683e-06 0.0013710679844723512 7.804947279377166e-06']
['59852.37468531586 0.002531967662514081 6.574755646920694e-06 0.001162293309691259 4.206042124070115e-06 4.110771679111178e-05 1.4875830997744306e-07 0.001162293309691259 4.206042124070115e-06 0.001369674352822822 7.805011349522036e-06']
['59852.374887942824 0.0025276546431421488 6.57034675020657e-06 0.0011652866634358839 4.207544375990903e-06 4.1213585023307264e-05 1.4881144127054588e-07 0.0011652866634358839 4.207544375990903e-06 0.0013623679797062649 7.802107798145494e-06']
['59852.37509056979 0.0025340745680878323 6.574969707205617e-06 0.0011643745833629583 4.2075054424711206e-06 4.1181326789506884e-05 1.4881006427896248e-07 0.0011643745833629583 4.2075054424711206e-06 0.001369699984724874 7.805980316340519e-06']
['59852.37529319676 0.0025349753578984696 6.5768693499528555e-06 0.001161387083690657 4.205344904788849e-06 4.107566560276641e-05 1.4873365088965807e-07 0.001161387083690657 4.205344904788849e-06 0.0013735882742078125 7.806416349041526e-06']
['59852.375495823726 0.002544280440948501 6.579814576414483e-06 0.0011625515140157685 4.206943456582751e-06 4.1116848901016976e-05 1.4879018809405538e-07 0.0011625515140157685 4.206943456582751e-06 0.0013817289269327326 7.809758837946336e-06']
['59852.37569845069 0.0025365861666869897 6.576107946733811e-06 0.00116062079181513 4.20468214257833e-06 4.104856357169056e-05 1.4871021047145836e-07 0.00116062079181513 4.20468214257833e-06 0.0013759653748718597 7.805417839373667e-06']
['59852.37590107766 0.0025307611107890414 6.5730104047823404e-06 0.0011621114974931209 4.206242210121123e-06 4.1101286499989983e-05 1.487653865739012e-07 0.0011621114974931209 4.206242210121123e-06 0.0013686496132959206 7.803649102284234e-06']
['59852.37610370463 0.0025412283707443397 6.579436158649827e-06 0.0011657272306030472 4.207153429651576e-06 4.1229166899400165e-05 1.4879761437223753e-07 0.0011657272306030472 4.207153429651576e-06 0.0013755011401412926 7.809553133590796e-06']
['59852.3763063316 0.0025358850967375757 6.575104994687961e-06 0.0011660684247827599 4.2080420577304064e-06 4.1241234175012484e-05 1.488290431614189e-07 0.0011660684247827599 4.2080420577304064e-06 0.0013698166719548158 7.806383519325611e-06']
['59852.376508958565 0.0025398228389715643 6.576466693111643e-06 0.0011697404719397105 4.210061310309174e-06 4.1371106276411426e-05 1.4890045961236598e-07 0.0011697404719397105 4.210061310309174e-06 0.0013700823670318538 7.808618981751446e-06']
['59852.37671158553 0.002547682068941054 6.585074191413207e-06 0.0011713950984580867 4.21035847213483e-06 4.1429626718493765e-05 1.4891096956202187e-07 0.0011713950984580867 4.21035847213483e-06 0.0013762869704829674 7.816029719128111e-06']
['59852.3769142125 0.0025467057429608008 6.581534711001138e-06 0.0011615488928863088 4.205221500400245e-06 4.108138843239434e-05 1.4872928635222572e-07 0.0011615488928863088 4.205221500400245e-06 0.001385156850074492 7.810280854075692e-06']
['59852.37711683947 0.002548062665991533 6.582677934457886e-06 0.0011712258048418608 4.209450424238529e-06 4.142363918163682e-05 1.488788539372973e-07 0.0011712258048418608 4.209450424238529e-06 0.0013768368611496722 7.813521719616622e-06']
['59852.37731946643 0.0025571280863145064 6.588580165383756e-06 0.0011730111245621642 4.210727748725417e-06 4.14867819501892e-05 1.4892403004974632e-07 0.0011730111245621642 4.210727748725417e-06 0.0013841169617523422 7.819182615182642e-06']
['59852.377522093404 0.0025496267539161775 6.584772548503821e-06 0.00117014134559502 4.2103468950327375e-06 4.1385284281699836e-05 1.4891056010579412e-07 0.00117014134559502 4.2103468950327375e-06 0.0013794854083211574 7.815769347418162e-06']
['59852.37772472037 0.002554165080595117 6.586750083372233e-06 0.0011703889528260527 4.209957909639827e-06 4.139404159609187e-05 1.4889680256177807e-07 0.0011703889528260527 4.209957909639827e-06 0.0013837761277690644 7.81722599530953e-06']
['59852.37792734734 0.002548043008904977 6.5842565517004575e-06 0.0011773473240562818 4.212752681009858e-06 4.164014363546062e-05 1.4899564737918966e-07 0.0011773473240562818 4.212752681009858e-06 0.001370695684848695 7.816630955211212e-06']
['59852.378129974306 0.0025538781899635604 6.585893604636967e-06 0.0011679098664246507 4.208935101278703e-06 4.1306361850506306e-05 1.488606281158873e-07 0.0011679098664246507 4.208935101278703e-06 0.0013859683235389096 7.815953509225478e-06']
['59852.37833260127 0.002540418170473986 6.579644153110937e-06 0.001172741612768718 4.210295591291611e-06 4.147724992037842e-05 1.4890874560712762e-07 0.001172741612768718 4.210295591291611e-06 0.001367676557705268 7.811421519007697e-06']
['59852.37853522824 0.002563580813981967 6.595692867973127e-06 0.0011771957154615399 4.213163285947851e-06 4.163478157828987e-05 1.4901016955819846e-07 0.0011771957154615399 4.213163285947851e-06 0.0013863850985204272 7.826487672173929e-06']
['59852.37873785521 0.0025700853932490385 6.598782711837674e-06 0.0011733116698115103 4.2115266654964425e-06 4.149741156397947e-05 1.4895228595046356e-07 0.0011733116698115103 4.2115266654964425e-06 0.0013967737234375282 7.828211170646545e-06']
['59852.37894048217 0.002543304183879102 6.5805325149254105e-06 0.0011721080262548443 4.21217587999191e-06 4.145484138136523e-05 1.4897524721625926e-07 0.0011721080262548443 4.21217587999191e-06 0.001371196157624258 7.813183334849898e-06']
['59852.379143109145 0.0025504419732418023 6.584181826488458e-06 0.0011752575050561704 4.212205549637778e-06 4.156623140789727e-05 1.4897629656532587e-07 0.0011752575050561704 4.212205549637778e-06 0.001375184468185632 7.81627314752115e-06']
['59852.37934573611 0.002554173883654541 6.58844372721964e-06 0.0011793979633007597 4.213156262387769e-06 4.171267016262882e-05 1.4900992115057508e-07 0.0011793979633007597 4.213156262387769e-06 0.0013747759203537812 7.820375722306257e-06']
['59852.37954836308 0.0025607766763607316 6.590932660548805e-06 0.0011799393387757623 4.213798693257405e-06 4.173181740327668e-05 1.4903264249468562e-07 0.0011799393387757623 4.213798693257405e-06 0.0013808373375849693 7.822818722377936e-06']
['59852.37975099005 0.0025656634138505677 6.5953179544590325e-06 0.0011695477137369326 4.210166409395511e-06 4.13642888495684e-05 1.489041767321671e-07 0.0011695477137369326 4.210166409395511e-06 0.001396115700113635 7.824558780865025e-06']
['59852.37995361701 0.0025644029577655005 6.595890034692229e-06 0.0011779015896942406 4.214298108700509e-06 4.165974677236443e-05 1.4905030570278037e-07 0.0011779015896942406 4.214298108700509e-06 0.00138650136807126 7.827264777605836e-06']
['59852.380156243984 0.0025566951725012003 6.586808862677159e-06 0.0011723263209300662 4.209925242737114e-06 4.1462561976167936e-05 1.4889564720643535e-07 0.0011723263209300662 4.209925242737114e-06 0.001384368851571134 7.817257929918746e-06']
['59852.38035887095 0.002562738935407548 6.5936307032466754e-06 0.0011726241037179636 4.211020262741196e-06 4.147309388787051e-05 1.4893437561675406e-07 0.0011726241037179636 4.211020262741196e-06 0.0013901148316895844 7.82359620021472e-06']
['59852.380561497914 0.0025663882472717905 6.5955744051266935e-06 0.0011756673480195607 4.211173944427839e-06 4.158072663756727e-05 1.4893981099455224e-07 0.0011756673480195607 4.211173944427839e-06 0.0013907208992522298 7.825317100526359e-06']
['59852.380764124886 0.002558045758144213 6.5917524613242226e-06 0.0011786494785255603 4.2140724897908675e-06 4.1686197928895035e-05 1.4904232606617494e-07 0.0011786494785255603 4.2140724897908675e-06 0.0013793962796186526 7.823656910971118e-06']
['59852.38096675185 0.002565864810046118 6.595355376939665e-06 0.0011712547142911393 4.210271237483386e-06 4.142466164424898e-05 1.4890788426735825e-07 0.0011712547142911393 4.210271237483386e-06 0.0013946100957549787 7.82464672948925e-06']
['59852.38116937882 0.002565044591246691 6.593290914902405e-06 0.0011759253085036137 4.211972078051129e-06 4.158985012338047e-05 1.4896803919708434e-07 0.0011759253085036137 4.211972078051129e-06 0.0013891192827430775 7.823822203681327e-06']
['59852.38137200579 0.0025744071261529955 6.59930969304754e-06 0.0011753403831489863 4.2118246665399805e-06 4.1569162620818526e-05 1.4896282558138037e-07 0.0011753403831489863 4.2118246665399805e-06 0.0013990667430040093 7.828815711614742e-06']
['59852.38157463275 0.002557608106659874 6.5900251744193944e-06 0.001179126373888712 4.215318075004138e-06 4.170306465209131e-05 1.490863796314492e-07 0.001179126373888712 4.215318075004138e-06 0.0013784817327711619 7.822872763437864e-06']
['59852.381777259725 0.0025640756795167027 6.5950710288304295e-06 0.0011829051887780333 4.215090463119654e-06 4.1836712889572356e-05 1.4907832950777763e-07 0.0011829051887780333 4.215090463119654e-06 0.0013811704907386695 7.827001308777246e-06']
['59852.38197988669 0.0025785251798512254 6.606238652613679e-06 0.0011809361707671414 4.214345728788282e-06 4.176707312302337e-05 1.4905198991886027e-07 0.0011809361707671414 4.214345728788282e-06 0.001397589009084084 7.836012956666358e-06']
['59852.382182513655 0.002571429387886207 6.5982814433795924e-06 0.0011807306568709383 4.2151554723531655e-06 4.17598045558112e-05 1.4908062873907985e-07 0.0011807306568709383 4.2151554723531655e-06 0.0013906987310152688 7.829741608901045e-06']
['59852.38238514063 0.002560964486379955 6.5916302006748676e-06 0.001173542267680335 4.2114821079632415e-06 4.150556729524389e-05 1.4895071005009448e-07 0.001173542267680335 4.2114821079632415e-06 0.0013874222186996202 7.822158925011911e-06']
['59852.38258776759 0.0025812923393696637 6.607322454317348e-06 0.001180226086040788 4.214010982767043e-06 4.174195901319822e-05 1.4904015070020236e-07 0.001180226086040788 4.214010982767043e-06 0.0014010662533288757 7.836746683299613e-06']
['59852.38279039456 0.002569188472368106 6.598768919733488e-06 0.0011781201178513155 4.214600921626682e-06 4.1667475624898474e-05 1.4906101551923206e-07 0.0011781201178513155 4.214600921626682e-06 0.0013910683545167906 7.82985390570074e-06']
['59852.38299302153 0.0025561316417041743 6.588961717207155e-06 0.0011720510991883274 4.210250637445029e-06 4.145282799824703e-05 1.4890715569003992e-07 0.0011720510991883274 4.210250637445029e-06 0.001384080542515847 7.819247210628894e-06']
['59852.383195648494 0.0025669207964527925 6.5968453598124825e-06 0.0011796494731483222 4.214821394848935e-06 4.172156550384568e-05 1.4906881316437448e-07 0.0011796494731483222 4.214821394848935e-06 0.0013872713233044703 7.828351556474441e-06']
['59852.383398275466 0.0025585574222230134 6.590067693620517e-06 0.001172912708893912 4.21201676208228e-06 4.1483301207949197e-05 1.4896961957140325e-07 0.001172912708893912 4.21201676208228e-06 0.0013856447133291014 7.821130187547253e-06']
['59852.38360090243 0.0025690478314663477 6.599021832417351e-06 0.0011786196167841707 4.215450558428393e-06 4.168514178583915e-05 1.4909106527408207e-07 0.0011786196167841707 4.215450558428393e-06 0.001390428214682177 7.830524411255936e-06']
['59852.383803529396 0.0025636896398267806 6.5921985290443195e-06 0.0011741904954694603 4.2121147752606115e-06 4.152849366344141e-05 1.4897308607847426e-07 0.0011741904954694603 4.2121147752606115e-06 0.0013894991443573204 7.822978481774244e-06']
['59852.38400615637 0.002558156659760418 6.590847935899251e-06 0.0011754275070078545 4.212756997857998e-06 4.1572243996996335e-05 1.489958000564608e-07 0.0011754275070078545 4.212756997857998e-06 0.0013827291527525635 7.822186269653067e-06']
['59852.38420878333 0.002566006198378851 6.5939554660429775e-06 0.001178040447978337 4.213541174517611e-06 4.1664657879542916e-05 1.490235346323796e-07 0.001178040447978337 4.213541174517611e-06 0.0013879657504005142 7.825227020190106e-06']
['59852.3844114103 0.002565150492044496 6.595991524943251e-06 0.0011752485973354034 4.211489569529984e-06 4.1565916361721326e-05 1.4895097394903454e-07 0.0011752485973354034 4.211489569529984e-06 0.0013899018947090924 7.82583852321162e-06']
['59852.38461403727 0.002570405966677089 6.599475023507192e-06 0.001179663569097095 4.214953300327835e-06 4.172206404605118e-05 1.4907347836637178e-07 0.001179663569097095 4.214953300327835e-06 0.001390742397579994 7.8306386655138e-06']
['59852.384816664235 0.00255774243694943 6.591915697161737e-06 0.0011710118680286908 4.209689075771294e-06 4.1416072714675635e-05 1.488872945086564e-07 0.0011710118680286908 4.209689075771294e-06 0.0013867305689207394 7.82143431048011e-06']
['59852.38501929121 0.0025652371182034177 6.594464520606658e-06 0.0011758357599117714 4.213270836749688e-06 4.158668298981633e-05 1.4901397338969754e-07 0.0011758357599117714 4.213270836749688e-06 0.0013894013582916463 7.825510427911103e-06']
['59852.38522191817 0.0025698179654642934 6.597835477949101e-06 0.0011800878569527883 4.215202107882599e-06 4.17370701592795e-05 1.4908227813353163e-07 0.0011800878569527883 4.215202107882599e-06 0.0013897301085115052 7.829390896128621e-06']
['59852.38542454514 0.0025444477208439436 6.581817982959685e-06 0.001176313416767528 4.213076436295757e-06 4.16035766453042e-05 1.4900709788010142e-07 0.001176313416767528 4.213076436295757e-06 0.0013681343040764155 7.814751500776083e-06']
['59852.38562717211 0.002562392266628113 6.593271218304658e-06 0.0011806889793607152 4.215133799779019e-06 4.175833051541836e-05 1.4907986222856762e-07 0.0011806889793607152 4.215133799779019e-06 0.0013817032872673978 7.825508182103198e-06']
['59852.385829799074 0.002561344596537889 6.5931358130227875e-06 0.001179300935905184 4.214737793534099e-06 4.170923852049077e-05 1.4906585637270667e-07 0.001179300935905184 4.214737793534099e-06 0.0013820436606327051 7.82518079773294e-06']
['59852.38603242604 0.0025585897667782173 6.590642210102029e-06 0.0011794295702572198 4.2146752038688385e-06 4.171378803004142e-05 1.4906364271612609e-07 0.0011794295702572198 4.2146752038688385e-06 0.0013791601965209975 7.82304619797719e-06']
['59852.38623505301 0.00256823538233399 6.595104833042013e-06 0.001168530104099738 4.208638313272394e-06 4.132829827092452e-05 1.488501313873863e-07 0.001168530104099738 4.208638313272394e-06 0.0013997052782342518 7.823557005017501e-06']
['59852.386437679976 0.0025663736526978127 6.594536581026106e-06 0.001176777804466267 4.213417493774641e-06 4.162000100036317e-05 1.4901916032091097e-07 0.001176777804466267 4.213417493774641e-06 0.0013895958482315457 7.825650113270952e-06']
['59852.38664030695 0.0025590678632723485 6.590068893276197e-06 0.0011744413714962145 4.212893601543913e-06 4.153736658783278e-05 1.4900063142354033e-07 0.0011744413714962145 4.212893601543913e-06 0.001384626491776134 7.821603449169244e-06']
['59852.38684293391 0.00255508004106779 6.591958198894892e-06 0.001173548076430165 4.210623109393846e-06 4.1505772737743595e-05 1.4892032919044375e-07 0.001173548076430165 4.210623109393846e-06 0.001381531964637625 7.821972888302482e-06']
['59852.38704556088 0.0025568529987488927 6.591060238047846e-06 0.0011794057651617203 4.215079484743791e-06 4.171294609701486e-05 1.4907794122715857e-07 0.0011794057651617203 4.215079484743791e-06 0.0013774472335871724 7.82361617950953e-06']
['59852.38724818785 0.0025768288873022353 6.604210103511472e-06 0.0011761308826694176 4.212842292720864e-06 4.1597120822193737e-05 1.4899881674513757e-07 0.0011761308826694176 4.212842292720864e-06 0.0014006980046328177 7.833494193184838e-06']
['59852.387450814815 0.0025690470735694557 6.596194458910724e-06 0.0011800314187948734 4.214394014707082e-06 4.173507406776591e-05 1.4905369768389556e-07 0.0011800314187948734 4.214394014707082e-06 0.0013890156547745824 7.82757294766158e-06']
['59852.38765344178 0.002550961693288102 6.58500827195971e-06 0.0011763165037419825 4.2117830720812445e-06 4.160368582469167e-05 1.4896135447833302e-07 0.0011763165037419825 4.2117830720812445e-06 0.0013746451895461193 7.816741686153377e-06']
['59852.38785606875 0.0025699933232851413 6.600680919087837e-06 0.0011768398817732376 4.213214038339884e-06 4.162219653597611e-05 1.4901196455687973e-07 0.0011768398817732376 4.213214038339884e-06 0.0013931534415119037 7.830719068417314e-06']
['59852.38805869572 0.002571766608359485 6.598252238181969e-06 0.0011794058648095433 4.216022263067964e-06 4.1712949621335664e-05 1.4911128518949902e-07 0.0011794058648095433 4.216022263067964e-06 0.0013923607435499415 7.83018367098487e-06']
['59852.38826132269 0.0025640630624770367 6.593167032999214e-06 0.0011682195733642028 4.20937704124203e-06 4.1317315492803985e-05 1.4887625854471246e-07 0.0011682195733642028 4.20937704124203e-06 0.001395843489112834 7.82232104943048e-06']
['59852.388463949654 0.0025690333707747755 6.597213698805052e-06 0.0011667711321095614 4.208666873091206e-06 4.126608736270301e-05 1.4885114148435022e-07 0.0011667711321095614 4.208666873091206e-06 0.0014022622386652142 7.825350179791082e-06']
['59852.38866657662 0.0025537022556771666 6.588203094223823e-06 0.0011747390529392534 4.212158328571719e-06 4.15478949151942e-05 1.4897462646175222e-07 0.0011747390529392534 4.212158328571719e-06 0.0013789632027379132 7.819635400432455e-06']
['59852.38886920359 0.002563350871909106 6.5923324445103246e-06 0.0011761505774711368 4.21174831812591e-06 4.159781738331525e-05 1.4896012530860336e-07 0.0011761505774711368 4.21174831812591e-06 0.0013872002944379691 7.822894026776785e-06']
['59852.389071830556 0.0025744417000148627 6.600864228943822e-06 0.001173273049667519 4.210452123923164e-06 4.1496045655797445e-05 1.489142818164758e-07 0.001173273049667519 4.210452123923164e-06 0.0014011686503473436 7.82938794905446e-06']
['59852.38927445752 0.002568213748258878 6.597041173689786e-06 0.0011771454786935675 4.2139569788923935e-06 4.163300481607926e-05 1.4903824070384757e-07 0.0011771454786935675 4.2139569788923935e-06 0.0013910682695653107 7.828051204949686e-06']
['59852.38947708449 0.0025688358877805247 6.597084756390726e-06 0.0011816586817129783 4.2153310702414446e-06 4.1792626720460693e-05 1.4908683924395008e-07 0.0011816586817129783 4.2153310702414446e-06 0.0013871772060675463 7.828827710120193e-06']
['59852.38967971146 0.002574959207514736 6.602820764197391e-06 0.0011844190720473897 4.216544106473623e-06 4.189025555747951e-05 1.491297416245058e-07 0.0011844190720473897 4.216544106473623e-06 0.0013905401354673461 7.834314663450381e-06']
['59852.38988233842 0.002569497066365993 6.596805107569904e-06 0.0011765964045694708 4.213662148289527e-06 4.16135852914184e-05 1.490278132043318e-07 0.0011765964045694708 4.213662148289527e-06 0.0013929006617965222 7.82769355092471e-06']
['59852.390084965395 0.0025747161222474265 6.600598980060737e-06 0.001183526773248084 4.216335231052251e-06 4.185869694311852e-05 1.4912235416766098e-07 0.001183526773248084 4.216335231052251e-06 0.0013911893489993426 7.832329773202307e-06']
['59852.39028759236 0.0025577164361800897 6.590622612384959e-06 0.0011735006287924396 4.211745577177506e-06 4.150409462083647e-05 1.4896002836738397e-07 0.0011735006287924396 4.211745577177506e-06 0.00138421580738765 7.82145173390172e-06']
['59852.39049021933 0.0025731278946727453 6.598908940851734e-06 0.0011762616429068825 4.212663875478518e-06 4.160174551956094e-05 1.4899250652601487e-07 0.0011762616429068825 4.212663875478518e-06 0.0013968662517658628 7.828929437503869e-06']
['59852.3906928463 0.002565643076449177 6.5949104686677834e-06 0.001171812349711748 4.209909447433454e-06 4.1444383962834094e-05 1.4889508856184533e-07 0.001171812349711748 4.209909447433454e-06 0.0013938307267374291 7.82407704750748e-06']
['59852.39089547326 0.0025620783887902753 6.592470171022986e-06 0.0011732971096770665 4.211526426924303e-06 4.149689660456418e-05 1.4895227751270017e-07 0.0011732971096770665 4.211526426924303e-06 0.0013887812791132088 7.822890629461058e-06']
['59852.391098100234 0.0025585390370684103 6.591853636269424e-06 0.0011725149017539423 4.211057295011863e-06 4.14692316584551e-05 1.4893568536540528e-07 0.0011725149017539423 4.211057295011863e-06 0.001386024135314468 7.822118504847075e-06']
['59852.3913007272 0.002563223763361104 6.593128585287095e-06 0.0011758483476014161 4.211453961635675e-06 4.158712818826723e-05 1.4894971457739178e-07 0.0011758483476014161 4.211453961635675e-06 0.0013873754157596877 7.823406483949728e-06']
['59852.39150335416 0.002570740893274628 6.595223708515527e-06 0.0012261158714243561 4.2748658360028745e-06 4.336497816458068e-05 1.5119245085656113e-07 0.0012261158714243561 4.2748658360028745e-06 0.001344625021850272 7.859481769251067e-06']
['59852.391705981136 0.0025675371092166977 6.596256696887983e-06 0.0011849411306575268 4.217036401089532e-06 4.190871960378773e-05 1.491471529848568e-07 0.0011849411306575268 4.217036401089532e-06 0.001382595978559171 7.829048372526109e-06']
['59852.3919086081 0.0025695735729265408 6.598643038226031e-06 0.0011772123197971106 4.2136521052069846e-06 4.16353688365305e-05 1.4902745800294725e-07 0.0011772123197971106 4.2136521052069846e-06 0.0013923612531294301 7.829237128203752e-06']
['59852.39211123507 0.002570460560170589 6.600016550408407e-06 0.0011796346342513458 4.2157889428807985e-06 4.17210406852226e-05 1.4910303317591892e-07 0.0011796346342513458 4.2157889428807985e-06 0.001390825925919243 7.831544858875603e-06']
['59852.39231386204 0.0025609517683375365 6.59401266454538e-06 0.0011736387431668055 4.211106856762796e-06 4.1508979417590334e-05 1.489374382537718e-07 0.0011736387431668055 4.211106856762796e-06 0.001387313025170731 7.823964722521408e-06']
['59852.392516489 0.002576904223347297 6.601291809631109e-06 0.0011776051771115327 4.212433412719575e-06 4.164926332175718e-05 1.48984355573285e-07 0.0011776051771115327 4.212433412719575e-06 0.0013992990462357642 7.830814058097603e-06']
['59852.392719115975 0.0025736120485418124 6.602640937077637e-06 0.0011758222686880262 4.212256550495531e-06 4.158620583538357e-05 1.4897810035168437e-07 0.0011758222686880262 4.212256550495531e-06 0.0013977897798537861 7.831856267269336e-06']
['59852.39292174294 0.0025652904370537734 6.596819051056308e-06 0.001175783681184181 4.212576333507751e-06 4.158484108161057e-05 1.489894103621536e-07 0.001175783681184181 4.212576333507751e-06 0.0013895067558695924 7.827120860061449e-06']
['59852.393124369904 0.002565412659971941 6.593059753439397e-06 0.0011796864161742267 4.214980044574486e-06 4.172287209610911e-05 1.4907442425060595e-07 0.0011796864161742267 4.214980044574486e-06 0.001385726243797714 7.825247196643918e-06']
['59852.39332699688 0.0025683745483898127 6.596493901491503e-06 0.0011758727097930597 4.212156838336429e-06 4.1587989824539376e-05 1.489745737554605e-07 0.0011758727097930597 4.212156838336429e-06 0.001392501838596753 7.826621047627061e-06']
['59852.39352962384 0.0025664291205077035 6.595508316634039e-06 0.0011755943527733015 4.2119233549378875e-06 4.157814495884185e-05 1.4896631596945876e-07 0.0011755943527733015 4.2119233549378875e-06 0.001390834767734402 7.825664719540443e-06']
['59852.39373225081 0.002560762990606532 6.5885790336941126e-06 0.0011874084529177496 4.217592880985071e-06 4.199598327799109e-05 1.4916683443510265e-07 0.0011874084529177496 4.217592880985071e-06 0.0013733545376887824 7.822880760497989e-06']
['59852.39393487778 0.002561214085640251 6.590463586719667e-06 0.0011767138583886234 4.213276347337045e-06 4.161773937050799e-05 1.490141682868569e-07 0.0011767138583886234 4.213276347337045e-06 0.0013845002272516276 7.822142153330356e-06']
['59852.39413750474 0.002567571899356006 6.596885627307177e-06 0.0011835705247070006 4.215476032167284e-06 4.1860244334441645e-05 1.4909196622329618e-07 0.0011835705247070006 4.215476032167284e-06 0.0013840013746490056 7.828737967102286e-06']
['59852.394340131716 0.002566412116230542 6.592007981591161e-06 0.0011820610330061415 4.215821377610718e-06 4.180685698649766e-05 1.4910418031982882e-07 0.0011820610330061415 4.215821377610718e-06 0.0013843510832244003 7.824814318389997e-06']
['59852.39454275868 0.002565025014783437 6.596423246577025e-06 0.0011731568598647845 4.211267932950887e-06 4.1491936282143646e-05 1.4894313515856046e-07 0.0011731568598647845 4.211267932950887e-06 0.0013918681549186524 7.826083135967968e-06']
['59852.394745385645 0.0025695818335814474 6.596630173598105e-06 0.0011774799525672533 4.213528025532712e-06 4.164483440948641e-05 1.4902306958216996e-07 0.0011774799525672533 4.213528025532712e-06 0.001392101881014194 7.827473926444888e-06']
['59852.39494801262 0.002567152044589124 6.598619390441006e-06 0.0011763506156663675 4.212500592344933e-06 4.1604892287221503e-05 1.4898673156649628e-07 0.0011763506156663675 4.212500592344933e-06 0.0013908014289227566 7.828597518100572e-06']
['59852.39515063958 0.0025607207825698603 6.590417382141034e-06 0.0011727972562879294 4.210310425721067e-06 4.147921790729698e-05 1.4890927026774444e-07 0.0011727972562879294 4.210310425721067e-06 0.001387923526281931 7.820506067497307e-06']
['59852.39535326655 0.0025675655316461056 6.5982868397352214e-06 0.0011753606444495491 4.210062323995654e-06 4.156987921773809e-05 1.4890049546419133e-07 0.0011753606444495491 4.210062323995654e-06 0.0013922048871965564 7.827005429367652e-06']
['59852.39555589352 0.0025728038544568727 6.601681572827744e-06 0.0011753416075867182 4.2130220708555236e-06 4.156920592644465e-05 1.4900517509597998e-07 0.0011753416075867182 4.2130220708555236e-06 0.0013974622468701545 7.831459286654637e-06']
['59852.395758520484 0.0025677434948277057 6.597483425710514e-06 0.001183383466163154 4.216179397636937e-06 4.185362849179703e-05 1.4911684268802849e-07 0.001183383466163154 4.216179397636937e-06 0.0013843600286645517 7.829620441987152e-06']
['59852.39596114746 0.002568693446911067 6.598758215914097e-06 0.001179348740660106 4.2138608372246345e-06 4.171092926783502e-05 1.4903484038792292e-07 0.001179348740660106 4.2138608372246345e-06 0.0013893447062509612 7.829446541588319e-06']
['59852.39616377442 0.0025565654524944566 6.584407087633762e-06 0.0011691618942661734 4.209250799566447e-06 4.135064327714342e-05 1.4887179365878062e-07 0.0011691618942661734 4.209250799566447e-06 0.0013874035582282832 7.814871015527543e-06']
['59852.396366401386 0.0025526433268826774 6.583964110682763e-06 0.0011808572791137029 4.2148198826056326e-06 4.176428290155372e-05 1.4906875967970855e-07 0.0011808572791137029 4.2148198826056326e-06 0.0013717860477689746 7.817498964091165e-06']
['59852.39656902836 0.0025747094707207073 6.601867331483628e-06 0.0011806630337004118 4.215271363375714e-06 4.175741287539857e-05 1.4908472754554618e-07 0.0011806630337004118 4.215271363375714e-06 0.0013940464370202955 7.832826113824188e-06']
['59852.39677165532 0.002557186277651401 6.588425116145679e-06 0.001184773409290691 4.218018776753124e-06 4.1902787673877945e-05 1.4918189741659763e-07 0.001184773409290691 4.218018776753124e-06 0.0013724128683607099 7.822980756214418e-06']
['59852.39697428229 0.0025661965837401554 6.593677682829229e-06 0.0011748910874402807 4.211213305986497e-06 4.155327203571842e-05 1.4894120312491407e-07 0.0011748910874402807 4.211213305986497e-06 0.0013913054962998747 7.823739700012901e-06']
['59852.39717690926 0.002569898527903424 6.596667099108134e-06 0.0011819830432065219 4.2158987098587415e-06 4.180409866158206e-05 1.49106915388614e-07 0.0011819830432065219 4.2158987098587415e-06 0.001387915484696902 7.82878143444076e-06']
['59852.397379536225 0.0025760403782997634 6.600458771543897e-06 0.0011762010646948356 4.213183093565461e-06 4.1599603003585174e-05 1.490108701093659e-07 0.0011762010646948356 4.213183093565461e-06 0.0013998393136049278 7.830515166625794e-06']
['59852.3975821632 0.00256744438941502 6.595864146147538e-06 0.0011803736556483912 4.213987218719844e-06 4.174717822042048e-05 1.4903931021896247e-07 0.0011803736556483912 4.213987218719844e-06 0.0013870707337666289 7.827075578654444e-06']
['59852.39778479016 0.002558972100463495 6.59193486682823e-06 0.001169133503133872 4.209942752223439e-06 4.1349639146244366e-05 1.4889626647783526e-07 0.001169133503133872 4.209942752223439e-06 0.0013898385973296228 7.821587004278888e-06']
['59852.39798741713 0.0025606917591361883 6.592908897061428e-06 0.0011728837829648642 4.211546432113899e-06 4.148227816248442e-05 1.4895298505154722e-07 0.0011728837829648642 4.211546432113899e-06 0.0013878079761713241 7.823271123692637e-06']
['59852.3981900441 0.002545474885149488 6.580692694950158e-06 0.0011803369099518408 4.214820850740992e-06 4.174587860725529e-05 1.4906879392049255e-07 0.0011803369099518408 4.214820850740992e-06 0.001365137975197647 7.814744471139885e-06']
['59852.398392671064 0.0025735096686370805 6.598425852987231e-06 0.0011835268793535614 4.2157751918555006e-06 4.1858700695832124e-05 1.4910254683288586e-07 0.0011835268793535614 4.2157751918555006e-06 0.001389982789283519 7.830196945520244e-06']
['59852.39859529803 0.0025680905474282094 6.598300028912111e-06 0.0011800343141147385 4.213677890641833e-06 4.173517646875888e-05 1.490283699761508e-07 0.0011800343141147385 4.213677890641833e-06 0.001388056233313471 7.828961913154603e-06']
['59852.398797925 0.0025669558900371227 6.5939929095117836e-06 0.0011763588478020156 4.21176927151963e-06 4.160518343946164e-05 1.4896086638331118e-07 0.0011763588478020156 4.21176927151963e-06 0.001390597042235107 7.824304626432222e-06']
['59852.399000551966 0.0025695742878898953 6.5973497683226844e-06 0.001176654588697569 4.213746178991625e-06 4.161564313399536e-05 1.4903078518246746e-07 0.001176654588697569 4.213746178991625e-06 0.0013929196991923263 7.82819780195633e-06']
['59852.39920317894 0.00256472766138247 6.597124899644004e-06 0.0011681538690678061 4.209132563877499e-06 4.1314991678680896e-05 1.4886761192670375e-07 0.0011681538690678061 4.209132563877499e-06 0.001396573792314664 7.825525789478742e-06']
['59852.3994058059 0.0025546356862086884 6.587475349110004e-06 0.0011751102302117072 4.21151354660975e-06 4.156102262578851e-05 1.4895182196476024e-07 0.0011751102302117072 4.21151354660975e-06 0.0013795254559969812 7.818674940705068e-06']
['59852.39960843287 0.0025707258320981407 6.597226650917585e-06 0.0011808918090649857 4.215135377541601e-06 4.17655041487607e-05 1.4907991803050407e-07 0.0011808918090649857 4.215135377541601e-06 0.001389834023033155 7.828841915288623e-06']
['59852.39981105984 0.0025634909929724194 6.5944588502510535e-06 0.0011843394963490256 4.216988195469835e-06 4.188744114286959e-05 1.4914544805982134e-07 0.0011843394963490256 4.216988195469835e-06 0.0013791514966233938 7.827507711167482e-06']
['59852.400013686805 0.002576286026914708 6.601220110671657e-06 0.0011738623971665212 4.211195530479702e-06 4.1516889559723e-05 1.4894057444496467e-07 0.0011738623971665212 4.211195530479702e-06 0.0014024236297481868 7.83008778657482e-06']
['59852.40021631377 0.0025701279007129666 6.598540731702514e-06 0.0011773101690200748 4.213186510040465e-06 4.16388295448666e-05 1.490109909424514e-07 0.0011773101690200748 4.213186510040465e-06 0.0013928177316928918 7.828900328674781e-06']
['59852.40041894074 0.002568351716896753 6.597138976312563e-06 0.0011844388011008392 4.216443607437433e-06 4.189095333000818e-05 1.491261871981979e-07 0.0011844388011008392 4.216443607437433e-06 0.0013839129157959137 7.82947248334665e-06']
['59852.40062156771 0.0025710761403561887 6.600012568417087e-06 0.001179326869848371 4.214053789714319e-06 4.171015574610234e-05 1.4904166468625963e-07 0.001179326869848371 4.214053789714319e-06 0.0013917492705078178 7.830607591104865e-06']
['59852.40082419468 0.0025620804913067618 6.592352390358127e-06 0.001180594394567287 4.2148625804215804e-06 4.1754985262659375e-05 1.4907026980603461e-07 0.001180594394567287 4.2148625804215804e-06 0.0013814860967394748 7.82458795148336e-06']
['59852.401026821644 0.002569753985358718 6.596161042979735e-06 0.0011748742867387857 4.212019656632577e-06 4.155267783245391e-05 1.489697219451783e-07 0.0011748742867387857 4.212019656632577e-06 0.0013948796986199322 7.826266676569532e-06']
['59852.40122944861 0.0025648470287822165 6.595076102375717e-06 0.0011813400768821082 4.2145350800956125e-06 4.178135837963271e-05 1.4905868685142527e-07 0.0011813400768821082 4.2145350800956125e-06 0.0013835069519001083 7.826706506410203e-06']
['59852.40143207558 0.0025607239237359974 6.592310013207275e-06 0.0011785222406258619 4.2133395033161125e-06 4.168169780874268e-05 1.4901640197269123e-07 0.0011785222406258619 4.2133395033161125e-06 0.0013822016831101355 7.823731915169191e-06']
['59852.401634702546 0.00255942971080604 6.589968279449344e-06 0.0011749579619815388 4.210675961627016e-06 4.155563723878692e-05 1.489221984558132e-07 0.0011749579619815388 4.210675961627016e-06 0.0013844717488245013 7.820324416414715e-06']
['59852.40183732951 0.0025640645436144083 6.5960508995541596e-06 0.0011828700674836174 4.216113824187095e-06 4.1835470727880335e-05 1.4911452350165562e-07 0.0011828700674836174 4.216113824187095e-06 0.001381194476130791 7.828378072628504e-06']
['59852.40203995648 0.002549119180067686 6.584077857082021e-06 0.0011765383093237285 4.21141222502218e-06 4.161153059241173e-05 1.4894823844664832e-07 0.0011765383093237285 4.21141222502218e-06 0.0013725808707439574 7.815758066699868e-06']
['59852.40224258345 0.002562144081279607 6.592012537937147e-06 0.0011691916807064794 4.210257556057613e-06 4.135169675696827e-05 1.4890740038590484e-07 0.0011691916807064794 4.210257556057613e-06 0.0013929524005731274 7.821821909802138e-06']
['59852.40244521041 0.0025742485962799797 6.601097402264698e-06 0.001178759722846139 4.215391406937022e-06 4.169009702413235e-05 1.4908897321802808e-07 0.001178759722846139 4.215391406937022e-06 0.0013954888734338407 7.832241800906316e-06']
['59852.402647837385 0.00255740766632052 6.589695177335087e-06 0.001179799782710692 4.21328707561744e-06 4.17268816171446e-05 1.4901454772215817e-07 0.001179799782710692 4.21328707561744e-06 0.0013776078836098278 7.821500528144089e-06']
['59852.40285046435 0.002563466127120239 6.590747049839861e-06 0.0011763299762541173 4.213546050607083e-06 4.1604162317336584e-05 1.4902370708876682e-07 0.0011763299762541173 4.213546050607083e-06 0.0013871361508661219 7.822526254066482e-06']
['59852.40305309132 0.002567645987574186 6.5962082286826665e-06 0.001181334253254371 4.21441124866324e-06 4.178115241093469e-05 1.4905430721040924e-07 0.001181334253254371 4.21441124866324e-06 0.001386311734319815 7.82759383009876e-06']
['59852.40325571829 0.002560092252044047 6.590729672939079e-06 0.0011680933134178147 4.208215628514808e-06 4.131284996067462e-05 1.488351819721553e-07 0.0011680933134178147 4.208215628514808e-06 0.0013919989386262323 7.81964170520849e-06']
['59852.40345834525 0.0025518551140315936 6.586797252439224e-06 0.0011735369456180459 4.211463932042555e-06 4.1505379065794836e-05 1.489500672084006e-07 0.0011735369456180459 4.211463932042555e-06 0.0013783181684135478 7.818076905200936e-06']
['59852.403660972224 0.0025710864051274656 6.599346317546249e-06 0.001181249844427109 4.214913554876268e-06 4.177816705935706e-05 1.4907207265857574e-07 0.001181249844427109 4.214913554876268e-06 0.0013898365607003566 7.830508801731273e-06']
['59852.40386359919 0.0025661327667555905 6.595372688423892e-06 0.0011785644579443487 4.213555420300869e-06 4.16831909409474e-05 1.4902403847389599e-07 0.0011785644579443487 4.213555420300869e-06 0.0013875683088112418 7.826428954456473e-06']
['59852.404066226154 0.002567925212587177 6.595284047299666e-06 0.0011714453667910451 4.211119837260059e-06 4.143140459708739e-05 1.4893789734495028e-07 0.0011714453667910451 4.211119837260059e-06 0.0013964798457961319 7.825043255364833e-06']
['59852.404268853126 0.0025606156956110315 6.591180342509089e-06 0.0011766072581556755 4.212641344275053e-06 4.161396915850612e-05 1.4899170964770255e-07 0.0011766072581556755 4.212641344275053e-06 0.001384008437455356 7.822404067994298e-06']
['59852.40447148009 0.0025565711654321906 6.589013536831668e-06 0.001181054404147811 4.2156871267529e-06 4.177125477346161e-05 1.490994321670208e-07 0.001181054404147811 4.2156871267529e-06 0.0013755167612843795 7.8222194637597e-06']
['59852.40467410706 0.0025696491898001177 6.595126798762986e-06 0.0011800216044265243 4.214831334302754e-06 4.173472695549122e-05 1.4906916470064271e-07 0.0011800216044265243 4.214831334302754e-06 0.0013896275853735934 7.826908755593235e-06']
['59852.40487673403 0.00256612599229156 6.59494574811899e-06 0.0011780845994983124 4.214060309275404e-06 4.1666219420131604e-05 1.4904189526856485e-07 0.0011780845994983124 4.214060309275404e-06 0.0013880413927932476 7.826341016774255e-06']
['59852.40507936099 0.0025710478612199885 6.597646138250555e-06 0.0011781366409298242 4.215739490369581e-06 4.166806000925842e-05 1.49101284151117e-07 0.0011781366409298242 4.215739490369581e-06 0.0013929112202901643 7.829520676020598e-06']
['59852.405281987965 0.0025658485631008866 6.593414330773965e-06 0.0011825099072802232 4.214996927108137e-06 4.182273266639697e-05 1.4907502134809097e-07 0.0011825099072802232 4.214996927108137e-06 0.0013833386558206634 7.825555036723371e-06']
['59852.40548461493 0.0025748938129007545 6.6019921815821894e-06 0.0011777177652983247 4.2141378144439115e-06 4.1653245314304226e-05 1.490446364531611e-07 0.0011777177652983247 4.2141378144439115e-06 0.0013971760476024298 7.832321385438577e-06']
['59852.405687241895 0.0025732991344859448 6.598069608704773e-06 0.0011811648071748907 4.215307613868248e-06 4.177515948179317e-05 1.4908600964445204e-07 0.0011811648071748907 4.215307613868248e-06 0.001392134327311054 7.829645000946671e-06']
['59852.40588986887 0.0025628989159327997 6.592981310562836e-06 0.0011764089324906226 4.211802888312425e-06 4.160695482296498e-05 1.4896205533414322e-07 0.0011764089324906226 4.211802888312425e-06 0.0013864899834421772 7.823470210298479e-06']
['59852.40609249583 0.0025589991099005606 6.589252256911178e-06 0.0011777390774466807 4.212657410426527e-06 4.165399907736173e-05 1.4899227787157444e-07 0.0011777390774466807 4.212657410426527e-06 0.00138126003245388 7.82078818040935e-06']
['59852.406295122804 0.0025617643948517743 6.5920062231650875e-06 0.0011767283930333894 4.213043586296232e-06 4.1618253428410344e-05 1.4900593604903364e-07 0.0011767283930333894 4.213043586296232e-06 0.001385036001818385 7.823316579704484e-06']
['59852.40649774977 0.0025736692276950987 6.601422807183523e-06 0.0011758569791871323 4.211847027086798e-06 4.158743346816356e-05 1.489636164239484e-07 0.0011758569791871323 4.211847027086798e-06 0.0013978122485079664 7.830609073295811e-06']
['59852.406700376734 0.0025633228964794187 6.593648009771744e-06 0.0011751570211877061 4.212227295120443e-06 4.1562677518037915e-05 1.489770656544494e-07 0.0011751570211877061 4.212227295120443e-06 0.0013881658752917126 7.824260531355316e-06']
['59852.406903003706 0.002565603118528218 6.5946038527528195e-06 0.0011773602712236916 4.213794380515228e-06 4.164060154783669e-05 1.490324899626332e-07 0.0011773602712236916 4.213794380515228e-06 0.0013882428473045265 7.82590972705436e-06']
['59852.40710563067 0.0025743608479418573 6.6018407733331826e-06 0.001181419771223313 4.214168849419691e-06 4.1784176990374754e-05 1.4904573409089533e-07 0.001181419771223313 4.214168849419691e-06 0.0013929410767185442 7.832210459880643e-06']
['59852.407308257636 0.0025694398797624666 6.59692322908038e-06 0.0011784296248076513 4.214233116186474e-06 4.167842219423674e-05 1.4904800706280868e-07 0.0011784296248076513 4.214233116186474e-06 0.0013910102549548153 7.828100462305211e-06']
['59852.40751088461 0.0025702786461158107 6.5997708973747135e-06 0.0011741010877394007 4.211557878111661e-06 4.152533151184372e-05 1.4895338987090777e-07 0.0011741010877394007 4.211557878111661e-06 0.00139617755837641 7.829060969140465e-06']
['59852.40771351157 0.0025633152000830947 6.595910006590407e-06 0.0011771032998668998 4.213841802102846e-06 4.163151304524415e-05 1.4903416715820625e-07 0.0011771032998668998 4.213841802102846e-06 0.0013862119002161948 7.827035936303654e-06']
['59852.407916138545 0.002562573141643189 6.593232989132131e-06 0.001175225632863285 4.212415231300068e-06 4.156510415966507e-05 1.489837125371101e-07 0.001175225632863285 4.212415231300068e-06 0.0013873475087799042 7.824011971480426e-06']
['59852.40811876551 0.0025689081986632577 6.594917016455521e-06 0.0011825014421153592 4.215869820620503e-06 4.182243327243426e-05 1.4910589364082116e-07 0.0011825014421153592 4.215869820620503e-06 0.0013864067565478985 7.827291281046934e-06']
['59852.408321392475 0.0025694352940187123 6.596396086368363e-06 0.0011775190294324338 4.214023894689671e-06 4.1646216470876185e-05 1.4904060736604925e-07 0.0011775190294324338 4.214023894689671e-06 0.0013919162645862784 7.827543593827591e-06']
['59852.40852401945 0.0025598791092278786 6.589920966064171e-06 0.0011778934461024323 4.212681636823105e-06 4.1659458751722023e-05 1.4899313470507864e-07 0.0011778934461024323 4.212681636823105e-06 0.0013819856631254463 7.82136464513698e-06']
['59852.40872664641 0.0025654157332989 6.592165533245854e-06 0.0011798549224435045 4.213602850965672e-06 4.1728831786264124e-05 1.4902571599050879e-07 0.0011798549224435045 4.213602850965672e-06 0.0013855608108553955 7.823752002931882e-06']
['59852.40892927338 0.0025651334119238664 6.593819197357709e-06 0.0011767161258821207 4.213101804441481e-06 4.161781956668544e-05 1.4900799509472122e-07 0.0011767161258821207 4.213101804441481e-06 0.0013884172860417457 7.824875617032587e-06']
['59852.40913190035 0.002567180709998407 6.597754463918161e-06 0.0011760068333018273 4.211437647920562e-06 4.159273347329609e-05 1.4894913759774725e-07 0.0011760068333018273 4.211437647920562e-06 0.0013911738766965796 7.827296533827929e-06']
['59852.409334527314 0.0025659599369754647 6.593438069432124e-06 0.0011695192245109339 4.209556192210841e-06 4.13632812493145e-05 1.4888259471410045e-07 0.0011695192245109339 4.209556192210841e-06 0.0013964407124645308 7.822645902175136e-06']
['59852.40953715428 0.002567388656223631 6.595891427283113e-06 0.001171342549777348 4.2118843682823215e-06 4.142776818909542e-05 1.4896493709858142e-07 0.001171342549777348 4.2118843682823215e-06 0.001396046106446283 7.825966627343094e-06']
['59852.40973978125 0.002570836338551243 6.599139785306172e-06 0.0011822414381474078 4.215138436978111e-06 4.1813237513162486e-05 1.49080026235936e-07 0.0011822414381474078 4.215138436978111e-06 0.0013885949004038352 7.830455794454181e-06']
['59852.409942408216 0.002554929543940919 6.586531673035209e-06 0.001173652116505131 4.211184567661599e-06 4.1509452402679255e-05 1.489401867145888e-07 0.001173652116505131 4.211184567661599e-06 0.001381277427435788 7.817702664006044e-06']
['59852.41014503519 0.0025668437898686675 6.597040328758117e-06 0.0011722115152201036 4.210764383603844e-06 4.145850155478222e-05 1.4892532574352214e-07 0.0011722115152201036 4.210764383603844e-06 0.001394632274648564 7.82633233344251e-06']
['59852.41034766215 0.0025565996715795646 6.589639689552538e-06 0.0011775626374603714 4.2144469099677416e-06 4.1647758789366134e-05 1.4905556847105112e-07 0.0011775626374603714 4.2144469099677416e-06 0.0013790370341191932 7.822078623681988e-06']
['59852.41055028912 0.002557775898704034 6.590218486246559e-06 0.0011718298627680958 4.21074637832144e-06 4.144500336049774e-05 1.4892468893692294e-07 0.0011718298627680958 4.21074637832144e-06 0.0013859460359359381 7.820573173304691e-06']
['59852.41075291609 0.0025559690196560315 6.589746227158227e-06 0.001175465588997157 4.212566793825144e-06 4.157359087184972e-05 1.4898907296489973e-07 0.001175465588997157 4.212566793825144e-06 0.0013805034306588746 7.821155562369562e-06']
['59852.410955543055 0.00256936495132568 6.5974461695462895e-06 0.0011708269297601936 4.210322238765328e-06 4.140953186143159e-05 1.4890968806871937e-07 0.0011708269297601936 4.210322238765328e-06 0.0013985380215654863 7.826436565532418e-06']
['59852.41115817002 0.002558646801039033 6.589523749415923e-06 0.0011787102179686493 4.2146876461048855e-06 4.1688346147252434e-05 1.490640827702083e-07 0.0011787102179686493 4.2146876461048855e-06 0.0013799365830703839 7.822110661346183e-06']
['59852.41136079699 0.0025702227613206364 6.599027637241769e-06 0.001179471302029785 4.214407553828991e-06 4.171526398957203e-05 1.490541765323793e-07 0.001179471302029785 4.214407553828991e-06 0.0013907514592908514 7.829967866271965e-06']
['59852.41156342396 0.00256143318273399 6.594220426525694e-06 0.0011712745580074906 4.210004047266843e-06 4.142536347214823e-05 1.488984343465341e-07 0.0011712745580074906 4.210004047266843e-06 0.0013901586247264993 7.823546325779115e-06']
['59852.41176605093 0.00256668541391583 6.5965075363602665e-06 0.0011704070384071772 4.209484990530683e-06 4.1394681242677345e-05 1.4888007646979966e-07 0.0011704070384071772 4.209484990530683e-06 0.0013962783755086527 7.825194921710314e-06']
['59852.411968677894 0.0025652510384731424 6.597080069719365e-06 0.0011732722360818801 4.212441271875189e-06 4.149601688109165e-05 1.4898463353405488e-07 0.0011732722360818801 4.212441271875189e-06 0.0013919788023912623 7.827268164263054e-06']
['59852.41217130486 0.002564170891297873 6.592755523929992e-06 0.0011778800430897968 4.213569045814772e-06 4.165898471711908e-05 1.4902452037787151e-07 0.0011778800430897968 4.213569045814772e-06 0.0013862908482080761 7.824230920809906e-06']
['59852.41237393183 0.002562927561346304 6.594584363065418e-06 0.001171302846032958 4.210043306034586e-06 4.1426363956389e-05 1.4889982284141098e-07 0.001171302846032958 4.210043306034586e-06 0.001391624715313346 7.823874204016419e-06']
['59852.412576558796 0.0025610206082378093 6.589132980222873e-06 0.0011772587540432086 4.213229484299962e-06 4.163701111204055e-05 1.49012510845968e-07 0.0011772587540432086 4.213229484299962e-06 0.0013837618541946007 7.820995852091682e-06']
['59852.41277918576 0.002550146544966154 6.5922297240233874e-06 0.0011780685057329683 4.222718193219845e-06 4.166565021961883e-05 1.4934810527444792e-07 0.0011780685057329683 4.222718193219845e-06 0.0013720780392331856 7.8287190314666e-06']
['59852.41298181273 0.002563690657981122 6.600953714162605e-06 0.0011772792751873747 4.219981311839294e-06 4.163773689904765e-05 1.4925130789658773e-07 0.0011772792751873747 4.219981311839294e-06 0.0013864113827937472 7.834592025676256e-06']
['59852.4131844397 0.002568932479994335 6.6013013058325e-06 0.0011794421150851462 4.221865608212785e-06 4.1714231712569136e-05 1.4931795124816352e-07 0.0011794421150851462 4.221865608212785e-06 0.0013894903649091888 7.835899957515777e-06']
['59852.41338706667 0.002562835064952269 6.603311014368947e-06 0.001174796671022085 4.218689066050934e-06 4.154993273801512e-05 1.4920560405105278e-07 0.001174796671022085 4.218689066050934e-06 0.0013880383939301841 7.835882451166809e-06']
['59852.413589693635 0.0025732635987196187 6.608453704300593e-06 0.0011802931218803199 4.222350823283196e-06 4.174432992102618e-05 1.493351122208121e-07 0.0011802931218803199 4.222350823283196e-06 0.0013929704768392988 7.842187630805865e-06']
['59852.4137923206 0.002565574759821546 6.602868602112651e-06 0.0011817573604555737 4.222160118942655e-06 4.179611676705228e-05 1.493283674344863e-07 0.0011817573604555737 4.222160118942655e-06 0.0013838173993659724 7.837379016403055e-06']
['59852.41399494757 0.002563287773648249 6.600808333509952e-06 0.0011708252592842981 4.217547038732276e-06 4.140947278043246e-05 1.4916521309707268e-07 0.0011708252592842981 4.217547038732276e-06 0.0013924625143639506 7.83315860171705e-06']
['59852.41419757454 0.002559404692151785 6.598448247431963e-06 0.001178383141106998 4.219973904174379e-06 4.167677816962958e-05 1.4925104590403482e-07 0.001178383141106998 4.219973904174379e-06 0.0013810215510447871 7.832477196005788e-06']
['59852.4144002015 0.002568863724574363 6.605602322296804e-06 0.001177581917358055 4.220306489738615e-06 4.164844067625917e-05 1.4926280871215684e-07 0.001177581917358055 4.220306489738615e-06 0.001391281807216308 7.838684131132138e-06']
['59852.414602828474 0.002579008719925934 6.613169421556375e-06 0.0011777291097417831 4.220012142236468e-06 4.1653646541916016e-05 1.492523982988339e-07 0.0011777291097417831 4.220012142236468e-06 0.0014012796101841507 7.84490358633116e-06']
['59852.41480545544 0.002570321283984873 6.60428970921769e-06 0.0011752763363328902 4.2199587570973e-06 4.156689742806942e-05 1.4925051018577027e-07 0.0011752763363328902 4.2199587570973e-06 0.0013950449476519827 7.837390795084859e-06']
['59852.415008082404 0.002564056192168844 6.599870497809828e-06 0.001176651153250944 4.21984500669803e-06 4.1615521629926e-05 1.492464870883653e-07 0.001176651153250944 4.21984500669803e-06 0.0013874050389179001 7.83360596841677e-06']
['59852.415210709376 0.0025623252437405146 6.602634632800554e-06 0.0011789086340370277 4.2208166760303156e-06 4.169536368015716e-05 1.4928085286109506e-07 0.0011789086340370277 4.2208166760303156e-06 0.0013834166097034869 7.836458224664565e-06']
['59852.41541333634 0.002566585831934188 6.6014067607159436e-06 0.001180396666671021 4.2221452281847954e-06 4.1747992068864286e-05 1.4932784078165969e-07 0.001180396666671021 4.2221452281847954e-06 0.001386189165263167 7.836139454368445e-06']
['59852.41561596331 0.0025703433601094536 6.606112323227767e-06 0.0011750739485339478 4.219248540188948e-06 4.155973942393094e-05 1.4922539140096322e-07 0.0011750739485339478 4.219248540188948e-06 0.0013952694115755059 7.838544397462347e-06']
['59852.41581859028 0.0025731158541927638 6.607522795606561e-06 0.0011780522050708246 4.220348543780455e-06 4.166507370162865e-05 1.4926429606963148e-07 0.0011780522050708246 4.220348543780455e-06 0.0013950636491219391 7.840325205337477e-06']
['59852.41602121724 0.0025627146499420874 6.6024751552084435e-06 0.001181184655293159 4.222944112048177e-06 4.177586146537839e-05 1.4935609551850715e-07 0.001181184655293159 4.222944112048177e-06 0.0013815299946489284 7.837469945628317e-06']
['59852.416223844215 0.002562469955718316 6.599637093646619e-06 0.0011725488304009633 4.2185312687574e-06 4.147043163887417e-05 1.4920002311343668e-07 0.0011725488304009633 4.2185312687574e-06 0.0013899211253173528 7.832701694391298e-06']
['59852.41642647118 0.0025670221391139022 6.603645961989814e-06 0.0011770656344034893 4.219492072646252e-06 4.163018090198067e-05 1.4923400459971506e-07 0.0011770656344034893 4.219492072646252e-06 0.001389956504710413 7.836597051171441e-06']
['59852.416629098145 0.0025778515120942033 6.609526169316792e-06 0.001180021457102234 4.221058309177527e-06 4.173472174496032e-05 1.492893988854936e-07 0.001180021457102234 4.221058309177527e-06 0.0013978300549919694 7.842395643702257e-06']
['59852.41683172512 0.0025624703219923 6.6015023370787475e-06 0.0011745667396678915 4.219293287544275e-06 4.154180057988363e-05 1.4922697401491668e-07 0.0011745667396678915 4.219293287544275e-06 0.0013879035823244083 7.834683717468902e-06']
['59852.41703435208 0.0025608316014250213 6.600835070247227e-06 0.0011742101093587555 4.218659098918665e-06 4.152918736287132e-05 1.4920454418055704e-07 0.0011742101093587555 4.218659098918665e-06 0.0013866214920662658 7.833779944413486e-06']
['59852.417236979054 0.0025648417221189384 6.604361845734455e-06 0.0011771842582398938 4.220247508233127e-06 4.163437636196563e-05 1.4926072266812365e-07 0.0011771842582398938 4.220247508233127e-06 0.0013876574638790446 7.83760705956486e-06']
['59852.41743960602 0.00257573251400886 6.609551002115539e-06 0.0011768584266282195 4.220142561020669e-06 4.162285242605151e-05 1.4925701091976222e-07 0.0011768584266282195 4.220142561020669e-06 0.0013988740873806405 7.84192372348167e-06']
['59852.417642232984 0.002562099213567343 6.599374263410436e-06 0.0011770586643356164 4.220140376022722e-06 4.1629934386257194e-05 1.4925693364126804e-07 0.0011770586643356164 4.220140376022722e-06 0.0013850405492317266 7.833347015286712e-06']
['59852.417844859956 0.0025531995842391257 6.594771867193053e-06 0.0011724558253590654 4.218226847950791e-06 4.1467142258396274e-05 1.4918925642984739e-07 0.0011724558253590654 4.218226847950791e-06 0.0013807437588800604 7.828438779290147e-06']
['59852.41804748692 0.0025679510856827337 6.605391726149092e-06 0.001176363364842313 4.219889492420013e-06 4.1605343197081965e-05 1.4924806044893206e-07 0.001176363364842313 4.219889492420013e-06 0.0013915877208404207 7.83828215772536e-06']
['59852.418250113886 0.0025661122856145196 6.6036663086158905e-06 0.0011800091341297866 4.221856346448462e-06 4.1734285908965086e-05 1.4931762368025824e-07 0.0011800091341297866 4.221856346448462e-06 0.001386103151484733 7.837887452980922e-06']
['59852.41845274086 0.0025741746305443986 6.607442365696372e-06 0.0011794347983618927 4.221207539773698e-06 4.171397293641957e-05 1.4929467683816944e-07 0.0011794347983618927 4.221207539773698e-06 0.001394739832182506 7.840719846407062e-06']
['59852.41865536782 0.002562103369709526 6.601147103501139e-06 0.0011772156013309491 4.219763549528988e-06 4.163548489704857e-05 1.4924360613034229e-07 0.0011772156013309491 4.219763549528988e-06 0.001384887768378577 7.834637674838255e-06']
['59852.418857994795 0.002567287218295557 6.604148147141047e-06 0.001184542270156806 4.225651305166761e-06 4.1894612799278e-05 1.4945184288889092e-07 0.001184542270156806 4.225651305166761e-06 0.001382744948138751 7.84033811147479e-06']
['59852.41906062176 0.0025607896006393373 6.599032431388053e-06 0.0011841207064949013 4.223140189113386e-06 4.1879703034695764e-05 1.493630303260971e-07 0.0011841207064949013 4.223140189113386e-06 0.001376668894144436 7.834675621071746e-06']
['59852.419263248725 0.0025653033610150986 6.6051077769306604e-06 0.0011756980114203833 4.219744156428443e-06 4.15818111335257e-05 1.4924292023971706e-07 0.0011756980114203833 4.219744156428443e-06 0.0013896053495947153 7.837964626775365e-06']
['59852.4194658757 0.002572332988381934 6.606527133634274e-06 0.001189655629528259 4.225556925395365e-06 4.207546089256066e-05 1.4944850488730302e-07 0.001189655629528259 4.225556925395365e-06 0.0013826773588536752 7.84229125302055e-06']
['59852.41966850266 0.002558550819949717 6.5972726185740934e-06 0.001177635493793637 4.222392152300188e-06 4.165033555504942e-05 1.4933657393577823e-07 0.001177635493793637 4.222392152300188e-06 0.0013809153261560801 7.832790147297047e-06']
['59852.41987112963 0.0025606404072089843 6.596531051364642e-06 0.0011799121301774595 4.221504420290252e-06 4.173085509596235e-05 1.4930517683855103e-07 0.0011799121301774595 4.221504420290252e-06 0.0013807282770315248 7.831687013801563e-06']
['59852.4200737566 0.0025644085963407353 6.604169244770409e-06 0.0011738523725291915 4.2196079591709185e-06 4.15165350107044e-05 1.4923810324710138e-07 0.0011738523725291915 4.2196079591709185e-06 0.0013905562238115438 7.83710040401869e-06']
['59852.420276383564 0.0025694710659686136 6.6043828656121946e-06 0.001170746767690424 4.217057227185825e-06 4.140669670817552e-05 1.491478895573391e-07 0.001170746767690424 4.217057227185825e-06 0.0013987242982781895 7.835907394357857e-06']
['59852.420479010536 0.002551986484073712 6.5903713446479225e-06 0.001180802671416114 4.222868165616449e-06 4.1762351549331025e-05 1.493534094629472e-07 0.001180802671416114 4.222868165616449e-06 0.0013711838126575981 7.827235144323524e-06']
['59852.4206816375 0.0025751149758403992 6.60929218577251e-06 0.0011799821029657227 4.221934133492089e-06 4.173332987710324e-05 1.4932037483414753e-07 0.0011799821029657227 4.221934133492089e-06 0.0013951328728746765 7.842669891335422e-06']
['59852.420884264466 0.002566571878191647 6.603391031535659e-06 0.0011753886172190778 4.2187334805321386e-06 4.157086855208086e-05 1.4920717489199247e-07 0.0011753886172190778 4.2187334805321386e-06 0.0013911832609725693 7.835973793672896e-06']
['59852.42108689144 0.0025662785826689374 6.6049982679462875e-06 0.0011738636462779457 4.218476627119191e-06 4.151693373800249e-05 1.4919809056081008e-07 0.0011738636462779457 4.218476627119191e-06 0.0013924149363909917 7.837190004914029e-06']
['59852.4212895184 0.002567545944271786 6.603977569711593e-06 0.001175623551472029 4.219832110924733e-06 4.157917765156059e-05 1.492460309936841e-07 0.001175623551472029 4.219832110924733e-06 0.0013919223927997568 7.837059575226242e-06']
['59852.42149214537 0.002565970110795975 6.603282888609121e-06 0.0011850376545515166 4.223262444473354e-06 4.1912133438199944e-05 1.4936735422495454e-07 0.0011850376545515166 4.223262444473354e-06 0.0013809324562444585 7.83832192384933e-06']
['59852.42169477234 0.0025737650086076905 6.6104595645059895e-06 0.0011853510179085458 4.223527878960918e-06 4.1923216399812185e-05 1.4937674204956852e-07 0.0011853510179085458 4.223527878960918e-06 0.0013884139906991447 7.844511673668975e-06']
['59852.421897399305 0.0025723791673833113 6.605783092017784e-06 0.0011742766368624214 4.217948959266365e-06 4.153154029199577e-05 1.4917942812812388e-07 0.0011742766368624214 4.217948959266365e-06 0.0013981025305208898 7.837567459471353e-06']
['59852.42210002627 0.002566967964769035 6.604284375921684e-06 0.0011723899364146195 4.218104087765237e-06 4.146481191368435e-05 1.491849146764372e-07 0.0011723899364146195 4.218104087765237e-06 0.0013945780283544154 7.836387829431687e-06']
['59852.42230265324 0.0025593492126871347 6.599470354195147e-06 0.0011748121791917115 4.219834255898745e-06 4.155048122731609e-05 1.4924610685662117e-07 0.0011748121791917115 4.219834255898745e-06 0.0013845370334954232 7.833263055914638e-06']
['59852.42250528021 0.0025596009327692975 6.598685432227345e-06 0.001177921021482042 4.220231921758836e-06 4.166043403127147e-05 1.4926017140936172e-07 0.001177921021482042 4.220231921758836e-06 0.0013816799112872555 7.832816026622972e-06']
['59852.42270790718 0.0025682183284729543 6.6049978521326925e-06 0.0011800415044604534 4.221949578192639e-06 4.1735430775217336e-05 1.4932092107868912e-07 0.0011800415044604534 4.221949578192639e-06 0.0013881768240125009 7.839059565246235e-06']
['59852.422910534144 0.002571949169705832 6.608076050382597e-06 0.0011852513187050658 4.22327723679291e-06 4.19196902617997e-05 1.4936787739623835e-07 0.0011852513187050658 4.22327723679291e-06 0.001386697851000766 7.84236824603724e-06']
['59852.42311316111 0.0025591001617231565 6.60126088378811e-06 0.0011749106525317163 4.219550572802172e-06 4.1553964009277095e-05 1.4923607361948978e-07 0.0011749106525317163 4.219550572802172e-06 0.0013841895091914402 7.834618835161422e-06']
['59852.42331578808 0.0025661874621541437 6.605012763859949e-06 0.0011815913931367888 4.22237514336705e-06 4.179024687390199e-05 1.4933597236782582e-07 0.0011815913931367888 4.22237514336705e-06 0.0013845960690173549 7.839301337624211e-06']
['59852.423518415046 0.002581288604144351 6.61460182023035e-06 0.001182950785244616 4.222007935649256e-06 4.183832553469328e-05 1.493229850515084e-07 0.001182950785244616 4.222007935649256e-06 0.001398337818899735 7.84718473395905e-06']
['59852.42372104201 0.002558911569330494 6.59827937946893e-06 0.0011803349035956181 4.221816215966971e-06 4.174580764691964e-05 1.4931620435481428e-07 0.0011803349035956181 4.221816215966971e-06 0.0013785766657348757 7.833327704808894e-06']
['59852.42392366898 0.0025600879611133924 6.599923891411566e-06 0.0011814047116463144 4.222346567127628e-06 4.178364436679249e-05 1.4933496169010162e-07 0.0011814047116463144 4.222346567127628e-06 0.001378683249467078 7.83499878145234e-06']
['59852.42412629595 0.0025764129845190368 6.609851560079032e-06 0.001181024353067019 4.222726566268062e-06 4.17701919338942e-05 1.4934840141045067e-07 0.001181024353067019 4.222726566268062e-06 0.0013953886314520179 7.84356789348733e-06']
['59852.42432892292 0.002564412513282134 6.6035484381464e-06 0.001179212325905452 4.221546306669559e-06 4.170610458283194e-05 1.493066582661766e-07 0.001179212325905452 4.221546306669559e-06 0.0013852001873766822 7.837621143835747e-06']
['59852.424531549885 0.0025544850863130453 6.594736011406512e-06 0.0011762413161560627 4.2200759647389245e-06 4.1601026607812054e-05 1.4925465555811087e-07 0.0011762413161560627 4.2200759647389245e-06 0.0013782437701569826 7.829405099259397e-06']
['59852.42473417685 0.002573969339074268 6.609533443464659e-06 0.00117627426104366 4.220379828325462e-06 4.160219179485888e-05 1.4926540253407154e-07 0.00117627426104366 4.220379828325462e-06 0.001397695078030608 7.842036612743799e-06']
['59852.42493680382 0.002565283644082759 6.604436810081089e-06 0.001181224765515281 4.2216090940654355e-06 4.177728007429377e-05 1.4930887891604716e-07 0.001181224765515281 4.2216090940654355e-06 0.0013840588785674782 7.838403467636127e-06']
['59852.42513943079 0.0025635183876461308 6.600072283593327e-06 0.001177499025751322 4.220524140129531e-06 4.164550898538085e-05 1.4927050652006356e-07 0.001177499025751322 4.220524140129531e-06 0.0013860193618948089 7.83414182703332e-06']
['59852.42534205775 0.002569869230479141 6.602594901280156e-06 0.001181003256995625 4.222165257367913e-06 4.176944581299594e-05 1.4932854916910397e-07 0.001181003256995625 4.222165257367913e-06 0.0013888659734835162 7.837151197401729e-06']
['59852.425544684724 0.0025558626704769807 6.595166137347679e-06 0.0011746870646769743 4.219988013559643e-06 4.1546056206544313e-05 1.4925154492145899e-07 0.0011746870646769743 4.219988013559643e-06 0.0013811756058000064 7.829719995874984e-06']
['59852.42574731169 0.0025603073818068318 6.6013530240624245e-06 0.001175562726037551 4.220022775416836e-06 4.157702639187995e-05 1.4925277437065973e-07 0.001175562726037551 4.220022775416836e-06 0.0013847446557692807 7.83495079584645e-06']
['59852.42594993866 0.0025624654805970334 6.601445956400378e-06 0.001181072378813917 4.2220989148902035e-06 4.177189049723076e-05 1.493262027839341e-07 0.001181072378813917 4.2220989148902035e-06 0.0013813931017831163 7.836147520458759e-06']
['59852.426152565626 0.0025668590401541277 6.606004885239381e-06 0.0011725368094220327 4.219367416836842e-06 4.14700064837147e-05 1.4922959580232555e-07 0.0011725368094220327 4.219367416836842e-06 0.001394322230732095 7.838517840897663e-06']
['59852.42635519259 0.0025664341034160455 6.603608669447456e-06 0.0011775836443558394 4.22039839184347e-06 4.164850175631119e-05 1.4926605908421647e-07 0.0011775836443558394 4.22039839184347e-06 0.0013888504590602061 7.837053658427798e-06']
['59852.42655781956 0.0025773180209834197 6.608698472255524e-06 0.001184053173104357 4.222661070399131e-06 4.187731452960046e-05 1.4934608496794124e-07 0.001184053173104357 4.222661070399131e-06 0.0013932648478790627 7.842560934583603e-06']
['59852.42676044653 0.002553135955747222 6.594582605893013e-06 0.00118033441617214 4.222496209361546e-06 4.1745790407840545e-05 1.4934025420148458e-07 0.00118033441617214 4.222496209361546e-06 0.001372801539575082 7.830580692644658e-06']
['59852.42696307349 0.002565355719335937 6.602719853422193e-06 0.0011815296269540572 4.22286057042083e-06 4.178806234205807e-05 1.4935314083785244e-07 0.0011815296269540572 4.22286057042083e-06 0.0013838260923818796 7.837631074501436e-06']
['59852.427165700465 0.0025630474707663913 6.59953027072522e-06 0.0011737534501759445 4.218852481138658e-06 4.1513036348148504e-05 1.4921138367749434e-07 0.0011737534501759445 4.218852481138658e-06 0.0013892940205904468 7.832784693314907e-06']
['59852.42736832743 0.0025710172520810926 6.606245094771961e-06 0.001175543992408884 4.218826341138463e-06 4.1576363825301195e-05 1.492104591641069e-07 0.001175543992408884 4.218826341138463e-06 0.0013954732596722086 7.83842904853277e-06']
['59852.4275709544 0.002562722661562262 6.603710604589935e-06 0.0011740100265460465 4.219083210904974e-06 4.152211088094457e-05 1.4921954407367828e-07 0.0011740100265460465 4.219083210904974e-06 0.0013887126350162155 7.836431387418242e-06']
['59852.42777358137 0.002575406487484202 6.609957847380888e-06 0.0011782573044665271 4.221438050870575e-06 4.1672327608884475e-05 1.49302829500504e-07 0.0011782573044665271 4.221438050870575e-06 0.0013971491830176749 7.842963850579074e-06']
['59852.42797620833 0.002560359608803337 6.5947191623375015e-06 0.0011818685193244465 4.222928789657179e-06 4.180004820781887e-05 1.4935555359978106e-07 0.0011818685193244465 4.222928789657179e-06 0.0013784910894788906 7.830928961024796e-06']
['59852.428178835304 0.002562242258907105 6.598841683605415e-06 0.0011748352015206137 4.219302811188971e-06 4.155129547563748e-05 1.492273108449455e-07 0.0011748352015206137 4.219302811188971e-06 0.0013874070573864914 7.832447112990646e-06']
['59852.42838146227 0.002570558703498417 6.606149337095172e-06 0.001172028708319757 4.217068474950902e-06 4.145203608326634e-05 1.491482873656526e-07 0.001172028708319757 4.217068474950902e-06 0.00139852999517866 7.837402349403003e-06']
['59852.42858408923 0.002576200095435014 6.608779525982038e-06 0.0011831020752837709 4.222905205977256e-06 4.1843676325264855e-05 1.493547194977286e-07 0.0011831020752837709 4.222905205977256e-06 0.001393098020151243 7.842760687519999e-06']
['59852.428786716206 0.002565334139061917 6.6071424892063255e-06 0.0011743342993673672 4.219696294746725e-06 4.153357968592758e-05 1.4924122747899923e-07 0.0011743342993673672 4.219696294746725e-06 0.00139099983969455 7.839653607945621e-06']
['59852.42898934317 0.002550629394229452 6.593911818814621e-06 0.001177736623899917 4.220106580014671e-06 4.165391230089605e-05 1.4925573835199288e-07 0.001177736623899917 4.220106580014671e-06 0.001372892770329535 7.82872739472938e-06']
['59852.429191970135 0.0025702894959253953 6.60851474203321e-06 0.0011775913555215577 4.2207155920270245e-06 4.1648774483009204e-05 1.492772777458081e-07 0.0011775913555215577 4.2207155920270245e-06 0.0013926981404038376 7.841358760090646e-06']
['59852.42939459711 0.002567887058967866 6.6023513408487285e-06 0.0011813646009682702 4.222750366256397e-06 4.1782225741752156e-05 1.4934924316284823e-07 0.0011813646009682702 4.222750366256397e-06 0.001386522457999596 7.837261248913778e-06']
['59852.42959722407 0.002561065957692094 6.601851856912296e-06 0.001181042541789718 4.221727613422564e-06 4.177083522836666e-05 1.4931307068083365e-07 0.001181042541789718 4.221727613422564e-06 0.001380023415902376 7.836289426925917e-06']
['59852.429799851045 0.0025718467320073736 6.606674272467576e-06 0.001179066009914208 4.2217926198584115e-06 4.170092971321864e-05 1.493153698131887e-07 0.001179066009914208 4.2217926198584115e-06 0.0013927807220931656 7.840387609523902e-06']
['59852.43000247801 0.002561662177420848 6.600386640077999e-06 0.0011745262815331307 4.2176838345734835e-06 4.154036966607575e-05 1.4917005126025548e-07 0.0011745262815331307 4.2176838345734835e-06 0.0013871358958877174 7.832876912536199e-06']
['59852.430205104974 0.0025641085726745803 6.598895001548159e-06 0.0011812428431571135 4.221099205710598e-06 4.177791944008423e-05 1.4929084530446997e-07 0.0011812428431571135 4.221099205710598e-06 0.0013828657295174669 7.833459883468346e-06']
['59852.43040773195 0.002573483177228603 6.606708166636712e-06 0.001176671240876858 4.21922720793145e-06 4.161623208436138e-05 1.4922463692669033e-07 0.001176671240876858 4.21922720793145e-06 0.001396811936351745 7.839035082920172e-06']
['59852.43061035891 0.002559977731003029 6.597580811962255e-06 0.0011783072178101295 4.221745839556561e-06 4.167409293229793e-05 1.493137152984601e-07 0.0011783072178101295 4.221745839556561e-06 0.0013816705131928996 7.832701354206329e-06']
['59852.43081298588 0.00256992272401051 6.604397566333544e-06 0.0011771582053875713 4.218688258758486e-06 4.163345493080368e-05 1.492055754989231e-07 0.0011771582053875713 4.218688258758486e-06 0.0013927645186229388 7.836797677545284e-06']
['59852.43101561285 0.0025708503428609926 6.607039923644294e-06 0.0011828488489814208 4.223191572477607e-06 4.183472027687821e-05 1.4936484764085458e-07 0.0011828488489814208 4.223191572477607e-06 0.0013880014938795718 7.841449075934593e-06']
['59852.43121823981 0.002562988875922096 6.600300664045907e-06 0.0011783671251897794 4.220649300345953e-06 4.1676211722431036e-05 1.4927493315720178e-07 0.0011783671251897794 4.220649300345953e-06 0.0013846217507323167 7.834401660134335e-06']
['59852.431420866786 0.0025662830520917085 6.603327202238208e-06 0.0011726646636646893 4.21733751716253e-06 4.147452840254005e-05 1.4915780278740393e-07 0.0011726646636646893 4.21733751716253e-06 0.0013936183884270192 7.83516852872264e-06']
['59852.43162349375 0.0025602651461626258 6.5995797269359916e-06 0.0011809023679400469 4.222994839948638e-06 4.176587759257391e-05 1.4935788965097624e-07 0.0011809023679400469 4.222994839948638e-06 0.001379362778222579 7.835058263370947e-06']
['59852.431826120715 0.002564302366403505 6.5996869832595694e-06 0.001185339498550927 4.223896069119587e-06 4.1922808985877456e-05 1.4938976411262408e-07 0.001185339498550927 4.223896069119587e-06 0.0013789628678525778 7.835634389105306e-06']
['59852.43202874769 0.002561969479510468 6.599923587226562e-06 0.001175940744911528 4.219070448980331e-06 4.159039607463006e-05 1.4921909271292486e-07 0.001175940744911528 4.219070448980331e-06 0.0013860287345989401 7.833233483733816e-06']
['59852.43223137465 0.002573309762333067 6.610344328725067e-06 0.0011682414186656442 4.217014513601079e-06 4.13180881122946e-05 1.4914637887330587e-07 0.0011682414186656442 4.217014513601079e-06 0.0014050683436674228 7.84090961255324e-06']
['59852.43243400162 0.0025701594834165406 6.606581935960501e-06 0.0011748518480037564 4.220368365641153e-06 4.1551884224543536e-05 1.4926499712454513e-07 0.0011748518480037564 4.220368365641153e-06 0.0013953076354127842 7.839542972537633e-06']
['59852.43263662859 0.0025626322481789934 6.599222001379457e-06 0.0011743167288017057 4.219107370311732e-06 4.153295825428804e-05 1.492203985379022e-07 0.0011743167288017057 4.219107370311732e-06 0.0013883155193772877 7.832662256583611e-06']
['59852.432839255554 0.002552424638116069 6.595553142173593e-06 0.0011792987156168265 4.223121312415649e-06 4.170915999385362e-05 1.493623626994851e-07 0.0011792987156168265 4.223121312415649e-06 0.0013731259224992424 7.831735112388266e-06']
['59852.43304188253 0.0025606367405487515 6.600916399872782e-06 0.0011769577956740696 4.221712751688762e-06 4.162636688712647e-05 1.4931254505452309e-07 0.0011769577956740696 4.221712751688762e-06 0.001383678944874682 7.835493339661578e-06']
['59852.43324450949 0.0025737018510807643 6.60809857895646e-06 0.001177680610839228 4.220581011392736e-06 4.1651931244121304e-05 1.4927251792954334e-07 0.001177680610839228 4.220581011392736e-06 0.0013960212402415364 7.840935588495502e-06']
['59852.43344713646 0.0025710707594366715 6.605383854415388e-06 0.0011811647087226621 4.222523549975104e-06 4.177515599975787e-05 1.4934122117788345e-07 0.0011811647087226621 4.222523549975104e-06 0.0013899060507140094 7.83969393498661e-06']
['59852.43364976343 0.0025629344657636896 6.601899378539511e-06 0.0011735462666451276 4.219678958704827e-06 4.150570872969145e-05 1.492406143419411e-07 0.0011735462666451276 4.219678958704827e-06 0.001389388199118562 7.835225964763021e-06']
['59852.43385239039 0.002567684132274375 6.605301106723973e-06 0.0011770556959303654 4.21987596502146e-06 4.162982940039746e-05 1.4924758201507722e-07 0.0011770556959303654 4.21987596502146e-06 0.0013906284363440094 7.838198509265681e-06']
['59852.43405501736 0.002561996092991492 6.600472983880525e-06 0.0011768308082681495 4.220644639433741e-06 4.162187562637923e-05 1.4927476831115337e-07 0.0011768308082681495 4.220644639433741e-06 0.0013851652847233426 7.83454432518685e-06']
['59852.43425764433 0.0025637020636513456 6.600981113551746e-06 0.0011708606021281786 4.216725857412313e-06 4.1410722777833906e-05 1.491361697490178e-07 0.0011708606021281786 4.216725857412313e-06 0.001392841461523167 7.832862096196795e-06']
['59852.434460271295 0.0025765649323816284 6.6089487848802615e-06 0.0011798648467906516 4.221535814022374e-06 4.1729182788243105e-05 1.4930628716469535e-07 0.0011798648467906516 4.221535814022374e-06 0.0013967000855909769 7.842166070050024e-06']
['59852.43466289826 0.002561203414197291 6.599776499131049e-06 0.001176689247137632 4.21958468737455e-06 4.1616868925563334e-05 1.4923728017567322e-07 0.001176689247137632 4.21958468737455e-06 0.0013845141670596587 7.833386545575819e-06']
['59852.43486552523 0.0025695175076332604 6.606023794781035e-06 0.0011769630812373617 4.2205695264857536e-06 4.162655382568758e-05 1.4927211173405063e-07 0.0011769630812373617 4.2205695264857536e-06 0.0013925544263958987 7.83918092054989e-06']
['59852.4350681522 0.0025696379346672477 6.604212481236907e-06 0.0011807104645144403 4.221285560364743e-06 4.1759090397289126e-05 1.4929743625210894e-07 0.0011807104645144403 4.221285560364743e-06 0.0013889274701528074 7.838040206548396e-06']
['59852.43527077917 0.0025614174745353414 6.6009007952791425e-06 0.001175316853756087 4.218974487017083e-06 4.156833043877678e-05 1.4921569875274716e-07 0.001175316853756087 4.218974487017083e-06 0.0013861006207792545 7.834005171763538e-06']
['59852.435473406134 0.002567398706664327 6.6037679378690095e-06 0.0011742653898478444 4.218782427567081e-06 4.1531142510225774e-05 1.4920890603922819e-07 0.0011742653898478444 4.218782427567081e-06 0.0013931333168164827 7.836317767189861e-06']
['59852.4356760331 0.0025566420679886902 6.598951551606577e-06 0.0011741812056713953 4.219122191063571e-06 4.152816510404533e-05 1.4922092271477232e-07 0.0011741812056713953 4.219122191063571e-06 0.001382460862317295 7.832442380482344e-06']
['59852.43587866007 0.002555064807950664 6.595816210325364e-06 0.0011756676566644288 4.220415210684878e-06 4.158073755364647e-05 1.4926665392904916e-07 0.0011756676566644288 4.220415210684878e-06 0.0013793971512862351 7.83049781501605e-06']
['59852.436081287036 0.002555802062264041 6.596740089978085e-06 0.0011780759546191396 4.220413419895652e-06 4.166591367007543e-05 1.492665905928364e-07 0.0011780759546191396 4.220413419895652e-06 0.0013777261076449014 7.831275071759348e-06']
['59852.436283914 0.002567196085416582 6.604364875902551e-06 0.001185349042552388 4.224483251006798e-06 4.1923146535879546e-05 1.4941053142370042e-07 0.001185349042552388 4.224483251006798e-06 0.001381847042864194 7.839891207924526e-06']
['59852.43648654097 0.002569652794507627 6.607740998446251e-06 0.0011778369814007446 4.2210414725696e-06 4.165746172141451e-05 1.4928880341229883e-07 0.0011778369814007446 4.2210414725696e-06 0.0013918158131068826 7.840882106988983e-06']
['59852.43668916794 0.0025725629390066524 6.607900823601512e-06 0.001184321426560997 4.223685336234681e-06 4.1886802054850614e-05 1.493823109614452e-07 0.001184321426560997 4.223685336234681e-06 0.0013882415124456555 7.842440380014209e-06']
['59852.43689179491 0.0025654311018119443 6.605237354425061e-06 0.001183703283784191 4.223894997269443e-06 4.1864939726302786e-05 1.493897262036799e-07 0.001183703283784191 4.223894997269443e-06 0.0013817278180277533 7.840309270446542e-06']
['59852.437094421875 0.0025702663865147355 6.606091657881016e-06 0.0011770438339226352 4.220257061333789e-06 4.162940986769407e-05 1.4926106053994413e-07 0.0011770438339226352 4.220257061333789e-06 0.0013932225525921003 7.839069884626801e-06']
['59852.43729704884 0.0025566226057389626 6.597351706783899e-06 0.0011775702386929417 4.220916229039522e-06 4.164802762797439e-05 1.4928437382854278e-07 0.0011775702386929417 4.220916229039522e-06 0.001379052367046021 7.83206124564751e-06']
['59852.43749967581 0.0025576072218542307 6.595418103250208e-06 0.0011740455643277437 4.218320766002554e-06 4.1523367772860934e-05 1.4919257810144375e-07 0.0011740455643277437 4.218320766002554e-06 0.001383561657526487 7.829033787228724e-06']
['59852.43770230278 0.0025489637299485543 6.592429826816441e-06 0.001181317343744901 4.221865102008043e-06 4.178055435937526e-05 1.493179333448331e-07 0.001181317343744901 4.221865102008043e-06 0.0013676463862036534 7.828427425802224e-06']
['59852.43790492974 0.002566423369625362 6.6003590323499356e-06 0.0011827604796069372 4.22337779832728e-06 4.183159484959665e-05 1.4937143403296722e-07 0.0011827604796069372 4.22337779832728e-06 0.0013836628900184248 7.835921093485256e-06']
['59852.438107556714 0.002569228010542905 6.606698602446729e-06 0.0011755203264344793 4.220457785991502e-06 4.1575526812676843e-05 1.4926815972249425e-07 0.0011755203264344793 4.220457785991502e-06 0.0013937076841084256 7.839689429238116e-06']
['59852.43831018368 0.002553528863919773 6.593885047625176e-06 0.00117301913945518 4.219897980224664e-06 4.1487065419042936e-05 1.4924836064361346e-07 0.00117301913945518 4.219897980224664e-06 0.0013805097244645932 7.828592401242963e-06']
['59852.43851281065 0.002565591463835672 6.601882987607457e-06 0.0011793976515097793 4.2197926593416825e-06 4.1712659135278655e-05 1.492446356793607e-07 0.0011793976515097793 4.2197926593416825e-06 0.0013861938123258927 7.835273388331432e-06']
['59852.438715437616 0.002559050459300077 6.598400070422728e-06 0.0011802142374762502 4.22071800395998e-06 4.17415399559505e-05 1.4927736305048638e-07 0.0011802142374762502 4.22071800395998e-06 0.0013788362218238267 7.832837541932462e-06']
['59852.43891806458 0.002564323779635138 6.600998353053146e-06 0.0011764570747119958 4.220748326008211e-06 4.160865750574341e-05 1.4927843547356652e-07 0.0011764570747119958 4.220748326008211e-06 0.0013878667049231422 7.83504280068153e-06']
['59852.43912069155 0.0025648466347920843 6.60220098361729e-06 0.0011836641818271175 4.224637648917634e-06 4.186355677746883e-05 1.494159921327477e-07 0.0011836641818271175 4.224637648917634e-06 0.0013811824529649669 7.838151637518213e-06']
['59852.43932331852 0.0025691722843805276 6.607384303215626e-06 0.0011782896826289125 4.2221954818966115e-06 4.167347275212711e-05 1.4932961814313617e-07 0.0011782896826289125 4.2221954818966115e-06 0.001390882601751615 7.841202842531776e-06']
['59852.43952594548 0.002566308522075416 6.604202204477038e-06 0.001173588607638758 4.2184025503308175e-06 4.150720623600961e-05 1.491954706303572e-07 0.001173588607638758 4.2184025503308175e-06 0.001392719914436658 7.836479237148332e-06']
['59852.439728572455 0.002575834140613353 6.609201650866127e-06 0.001172262837840715 4.21783140921786e-06 4.1460316721173945e-05 1.4917527064561715e-07 0.001172262837840715 4.21783140921786e-06 0.0014035713027726378 7.840385721276489e-06']
['59852.43993119942 0.0025593744673856464 6.597146627226568e-06 0.0011775647922025246 4.221002074656964e-06 4.164783499778052e-05 1.4928740999617807e-07 0.0011775647922025246 4.221002074656964e-06 0.0013818096751831218 7.831934763223279e-06']
['59852.44013382639 0.0025612823923275383 6.598937516314122e-06 0.0011798247411351373 4.221397015959837e-06 4.1727764340838427e-05 1.4930137818741881e-07 0.0011798247411351373 4.221397015959837e-06 0.001381457651192401 7.833656177709908e-06']
['59852.44033645336 0.0025682809231881557 6.6033971576472195e-06 0.001181072480761507 4.221831774006685e-06 4.1771894102889176e-05 1.493167546079088e-07 0.001181072480761507 4.221831774006685e-06 0.0013872084424266487 7.837647449945412e-06']
['59852.44053908032 0.0025612555644656003 6.602745563230007e-06 0.001173748819752831 4.219232710611846e-06 4.1512872580431364e-05 1.4922483154419816e-07 0.001173748819752831 4.219232710611846e-06 0.0013875067447127693 7.835698669490203e-06']
['59852.440741707294 0.0025707685434509897 6.60813338970055e-06 0.0011736219922448912 4.219191087273567e-06 4.150838697491833e-05 1.492233594197459e-07 0.0011736219922448912 4.219191087273567e-06 0.0013971465512060985 7.840216854590438e-06']
['59852.44094433426 0.0025637598809789383 6.603949627408223e-06 0.0011833144410070013 4.222874590172735e-06 4.185118722628605e-05 1.49353636685145e-07 0.0011833144410070013 4.222874590172735e-06 0.001380445439971937 7.838674663849225e-06']
['59852.441146961224 0.002574167757076188 6.607758084277297e-06 0.0011763391646727177 4.220708382164378e-06 4.160448729116758e-05 1.4927702274907938e-07 0.0011763391646727177 4.220708382164378e-06 0.00139782859240347 7.8407171959971e-06']
['59852.441349588196 0.0025775015949904135 6.610536736265132e-06 0.0011770729515861724 4.2211519479605114e-06 4.163043969437923e-05 1.4929271067997742e-07 0.0011770729515861724 4.2211519479605114e-06 0.0014004286434042411 7.843297757275424e-06']
['59852.44155221516 0.0025646620879198733 6.602644764358788e-06 0.0011835600166556501 4.222638218097899e-06 4.185987268814949e-05 1.4934527673311854e-07 0.0011835600166556501 4.222638218097899e-06 0.0013811020712642232 7.837448016111846e-06']
['59852.441754842126 0.0025638693049506046 6.601069140677829e-06 0.0011770222805850728 4.219715274082618e-06 4.162864757431336e-05 1.4924189873569347e-07 0.0011770222805850728 4.219715274082618e-06 0.0013868470243655318 7.834545985207776e-06']
['59852.4419574691 0.0025559554777380175 6.596478338392587e-06 0.0011795821438639533 4.2218474128959216e-06 4.171918421752964e-05 1.4931730772047023e-07 0.0011795821438639533 4.2218474128959216e-06 0.0013763733338740642 7.831827503632764e-06']
['59852.44216009606 0.0025704527458402936 6.606796359985883e-06 0.0011802910050838554 4.222544748976132e-06 4.174425505466599e-05 1.4934197093917283e-07 0.0011802910050838554 4.222544748976132e-06 0.0013901617407564382 7.840895503667206e-06']
['59852.442362723035 0.0025663030038429596 6.605648453954052e-06 0.0011735828537649373 4.218501907335778e-06 4.1507002734351713e-05 1.4919898466557282e-07 0.0011735828537649373 4.218501907335778e-06 0.0013927201500780223 7.837751580614249e-06']
['59852.44256535 0.0025706816582638328 6.605785224761868e-06 0.0011741413047972858 4.219309947821302e-06 4.152675389930128e-05 1.492275632516816e-07 0.0011741413047972858 4.219309947821302e-06 0.001396540353466547 7.838301784919103e-06']
['59852.442767976965 0.002564899562646357 6.60024606081159e-06 0.0011797744751131931 4.221130062544849e-06 4.1725986543980214e-05 1.4929193664173645e-07 0.0011797744751131931 4.221130062544849e-06 0.0013851250875331637 7.834614672603803e-06']
['59852.44297060394 0.002558899606155253 6.5991436353928785e-06 0.0011762969130212915 4.219875740813459e-06 4.160299294468351e-05 1.4924757408534127e-07 0.0011762969130212915 4.219875740813459e-06 0.0013826026931339616 7.833010148624363e-06']
['59852.4431732309 0.002554127757091403 6.595362402510563e-06 0.0011741869250819258 4.219205730738205e-06 4.1528367386813665e-05 1.4922387732636393e-07 0.0011741869250819258 4.219205730738205e-06 0.001379940832009477 7.829463724850126e-06']
['59852.44337585787 0.0025633483408153434 6.602584706049147e-06 0.0011797015220641118 4.2221796806667005e-06 4.1723406357674676e-05 1.493290592889479e-07 0.0011797015220641118 4.2221796806667005e-06 0.0013836468187512316 7.8371503785744e-06']
['59852.44357848484 0.00256801273689765 6.603710116824224e-06 0.001178266716615701 4.220426697764032e-06 4.1672660495565844e-05 1.4926706020136675e-07 0.001178266716615701 4.220426697764032e-06 0.0013897460202819487 7.837154382698226e-06']
['59852.443781111804 0.0025671956399432303 6.603554508075823e-06 0.0011830364837267246 4.222823674075419e-06 4.1841356498480626e-05 1.493518358965737e-07 0.0011830364837267246 4.222823674075419e-06 0.0013841591562165057 7.838314354723237e-06']
['59852.443983738776 0.0025610504824053293 6.59912840589929e-06 0.0011761275958170009 4.220551087767453e-06 4.159700457356944e-05 1.4927145959779245e-07 0.0011761275958170009 4.220551087767453e-06 0.0013849228865883284 7.833361168872654e-06']
['59852.44418636574 0.0025781265862974538 6.611701151545465e-06 0.0011840040225086696 4.223454929278137e-06 4.187557618287611e-05 1.493741619823215e-07 0.0011840040225086696 4.223454929278137e-06 0.0013941225637887841 7.845518699040327e-06']
['59852.444388992706 0.0025624973346350995 6.601375219427257e-06 0.0011743855286047464 4.219318548000694e-06 4.153539154956308e-05 1.4922786742080643e-07 0.0011743855286047464 4.219318548000694e-06 0.0013881118060303532 7.834590212459803e-06']
['59852.44459161968 0.0025490730566531624 6.5912097563591775e-06 0.0011845122115021391 4.224407244093182e-06 4.1893549691839566e-05 1.494078432290313e-07 0.0011845122115021391 4.224407244093182e-06 0.0013645608451510233 7.828771462769325e-06']
['59852.44479424664 0.0025756701391929163 6.610264673784752e-06 0.0011824743912441514 4.223286902316053e-06 4.182147654357478e-05 1.4936821924419078e-07 0.0011824743912441514 4.223286902316053e-06 0.0013931957479487648 7.844217699475261e-06']
['59852.44499687361 0.0025703197959142943 6.60646128996037e-06 0.0011816202217441775 4.222578831797516e-06 4.179126647731718e-05 1.4934317637239459e-07 0.0011816202217441775 4.222578831797516e-06 0.0013886995741701168 7.84063152854981e-06']
['59852.44519950058 0.002568415704957902 6.604643056605167e-06 0.0011792547614328792 4.222215252712403e-06 4.170760543259922e-05 1.4933031739270556e-07 0.0011792547614328792 4.222215252712403e-06 0.0013891609435250228 7.838903720891085e-06']
['59852.445402127545 0.0025600766057647757 6.600628140626544e-06 0.0011730639811006755 4.217916124407084e-06 4.148865136782894e-05 1.4917826683253272e-07 0.0011730639811006755 4.217916124407084e-06 0.0013870126246641001 7.833205492221197e-06']
['59852.44560475452 0.002570356121219117 6.607141972889031e-06 0.0011753099603180228 4.219247973281688e-06 4.156808663327838e-05 1.492253713507204e-07 0.0011753099603180228 4.219247973281688e-06 0.0013950461609010941 7.8394118727079e-06']
['59852.44580738148 0.0025636841349263003 6.599943793396762e-06 0.0011759804540802338 4.220369509237358e-06 4.159180049918241e-05 1.492650375709871e-07 0.0011759804540802338 4.220369509237358e-06 0.0013877036808460665 7.83395027240388e-06']
['59852.44601000845 0.0025670393385858682 6.602738985528355e-06 0.0011798964010894903 4.220020180748114e-06 4.173029879327332e-05 1.492526826030258e-07 0.0011798964010894903 4.220020180748114e-06 0.001387142937496378 7.836117178611953e-06']
['59852.44621263542 0.0025652492472754145 6.60351757353643e-06 0.0011818471661331955 4.2223367266711455e-06 4.179929299316589e-05 1.4933461365514796e-07 0.0011818471661331955 4.2223367266711455e-06 0.001383402081142219 7.838020909477116e-06']
['59852.446415262384 0.0025611520002998475 6.602613875618814e-06 0.00117608968943052 4.2193386548723756e-06 4.159566390939539e-05 1.492285785559216e-07 0.00117608968943052 4.2193386548723756e-06 0.0013850623108693275 7.835644751710884e-06']
In [11]:
fig, axs = plt.subplots(2, 2,figsize=(15,10))

#JWST pipeline: net aperture
dat = ascii.read('/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/WASP80b_WLP4_nrca3_level3_asn_phot.ecsv') #call the data 
normalized_net_aperture_sum_pipeline = dat['net_aperture_sum'].value/dat['net_aperture_sum'][0].value #normalized net aperture sum
std_net_aperture_sum_pipeline = np.std(normalized_net_aperture_sum_pipeline[0:20]) #calculated standard deviation
relative_error_net_aperture_sum_pipeline = (dat['net_aperture_sum_err'].value/dat['net_aperture_sum'].value)

#MAD: 
deviation = normalized_net_aperture_sum_pipeline[0:seg01_len] - np.median(normalized_net_aperture_sum_pipeline[0:seg01_len])
mad = np.median(np.abs(deviation))*1.48

print(style.BOLD+"Pipeline Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad*10**6))
print(style.BOLD+"Pipeline Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_net_aperture_sum_pipeline*10**6))
print(style.BOLD+"Median Relative Error Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_net_aperture_sum_pipeline)*10**6)) #ppm

axs[0,0].errorbar(dat['MJD'],normalized_net_aperture_sum_pipeline,yerr=relative_error_net_aperture_sum_pipeline,color='navy',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[0,0].set_title("Net Aperture Sum")
axs[0,0].set_xlabel("Time (MJD)")
axs[0,0].set_ylabel("Normalized Flux")

#JWST pipeline: aperature background
normalized_aperture__bkg_pipeline = dat['aperture_bkg'].value/dat['aperture_bkg'][0].value #normalized aperture bkg
std_aperture_bkg_pipeline = np.std(normalized_aperture__bkg_pipeline[0:20]) #calculated standard deviation
relative_error_aperture_bkg_pipeline = (dat['aperture_bkg_err'].value/dat['aperture_bkg'].value)

print(style.BOLD+"Pipeline Calculated Aperture Background std (ppm):"+style.END + " " +str(std_aperture_bkg_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Aperture Background (ppm):"+style.END + " " +str(np.median(relative_error_aperture_bkg_pipeline)*10**6))

axs[0,1].errorbar(dat['MJD'],normalized_aperture__bkg_pipeline,yerr=relative_error_aperture_bkg_pipeline,color='darkred',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[0,1].set_title("Aperture Background")
axs[0,1].set_xlabel("Time (MJD)")
axs[0,1].set_ylabel("Normalized Flux")
axs[0,1].legend()


#JWST pipeline: annulus mean
normalized_annulus_mean_pipeline = dat['annulus_mean'].value/dat['annulus_mean'][0].value #normalized annulus mean
std_annulus_mean_pipeline = np.std(normalized_annulus_mean_pipeline[0:20]) #calculated standard deviation
relative_error_annulus_mean_pipeline = (dat['annulus_mean_err'].value/dat['annulus_mean'].value)

print(style.BOLD+"Pipeline Calculated Annulus Mean std (ppm):"+style.END + " " +str(std_annulus_mean_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Annulus Mean (ppm):"+style.END + " " +str(np.median(relative_error_annulus_mean_pipeline)*10**6))

axs[1,0].errorbar(dat['MJD'],normalized_annulus_mean_pipeline,yerr=relative_error_annulus_mean_pipeline,color ='darkgreen',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[1,0].set_title("Annulus Mean")
axs[1,0].set_xlabel("Time (MJD)")
axs[1,0].set_ylabel("Normalized Flux")
axs[1,0].legend()

#JWST pipeline: annulus sum
normalized_annulus_sum_pipeline = dat['annulus_sum'].value/dat['annulus_sum'][0].value #normalized annulus sum
std_annulus_sum_pipeline = np.std(normalized_annulus_sum_pipeline[0:20]) #calculated standard deviation
relative_error_annulus_sum_pipeline = (dat['annulus_sum_err'].value/dat['annulus_sum'].value)

print(style.BOLD+"Pipeline Calculated Annulus Sum std (ppm):"+style.END + " " +str(std_annulus_sum_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Annulus Sum (ppm):"+style.END + " " +str(np.median(relative_error_annulus_sum_pipeline)*10**6))

axs[1,1].errorbar(dat['MJD'],normalized_annulus_sum_pipeline,yerr=relative_error_annulus_sum_pipeline,color = 'indigo',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[1,1].set_title("Annulus Sum")
axs[1,1].set_xlabel("Time (MJD)")
axs[1,1].set_ylabel("Normalized Flux")
axs[1,1].legend()
Pipeline Calculated Net Aperture Sum MAD (ppm): 4900.707483425411
Pipeline Calculated Net Aperture Sum std (ppm): 5291.520117183534
Median Relative Error Net Aperture Sum (ppm): 5656.9060264742375
Pipeline Calculated Aperture Background std (ppm): 2506.350234570066
Median Relative Errors Aperture Background (ppm): 3589.0441588527256
Pipeline Calculated Annulus Mean std (ppm): 2506.350234570014
Median Relative Errors Annulus Mean (ppm): 3589.0441588527256
Pipeline Calculated Annulus Sum std (ppm): 2506.350234570066
Median Relative Errors Annulus Sum (ppm): 3589.0441588527256
Out[11]:
<matplotlib.legend.Legend at 0x7f80e0c45760>

$\textbf{External method: tshirt}$¶

From: https://tshirt.readthedocs.io/en/latest/phot_pipeline/phot_pipeline.html

The Time Series Helper & Integration Reduction Tool (tshirt) is a general-purpose tool for time series science. Its main application is transiting exoplanet science. tshirt can:

Reduce raw data: flat field, bias subtract, gain correct, etc. Extract Spectroscopy and in our interest extract photometry. This photometric pipeline will take image data that have been reduced (using the JWST pipeline method) and calculate lightcurves on the stars/sources in the field. Therefore, we can use this external method and bypass stage2 & 3 of the JWST Science Calibration Pipeline.

NOTE: yaml file values used in tshirt are pulled from jwst pipeline header information as well as the jwst pipeline stage 3 results. [e.g. refStarPos in yaml is pulled from the stage3 results: xcenter,ycenter values]. Currently, tshirt is using the adjusted centered positions. tshirt is also utlizing the colrow background subtraction method for comparison with the pipelines mean method.

In [12]:
#read in yaml parameter file, a file required to run tshirt

with open("/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/WASP80b_WLP4_NRCA3_phot_pipeline.yaml", "r") as stream:
    paramfile = yaml.safe_load(stream)

paramfile
Out[12]:
{'procFiles': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/splintegrate/jw01185002001_01101_00001-seg*.fits',
 'excludeList': None,
 'srcName': 'WASP80b_WLP4_NRCA3',
 'srcNameShort': 'NRCA3_WASP80b',
 'nightName': 'NRCA3_WASP80b_2022_09_30',
 'refStarPos': [[1056.75, 167.5]],
 'refPhotCentering': None,
 'copyCentroidFile': None,
 'srcGeometry': 'Circular',
 'bkgSub': True,
 'bkgGeometry': 'CircularAnnulus',
 'bkgMethod': 'colrow',
 'apRadius': 3,
 'apHeight': None,
 'apWidth': None,
 'backStart': 4,
 'backEnd': 5,
 'backHeight': None,
 'backWidth': None,
 'backOffset': [0.0, 0.0],
 'boxFindSize': 5,
 'jdRef': 2459832,
 'timingMethod': 'JWSTint',
 'scaleAperture': False,
 'apScale': 2.5,
 'apRange': [2, 17],
 'isCube': False,
 'cubePlane': 0,
 'doCentering': True,
 'FITSextension': 0,
 'HEADextension': 0,
 'isSlope': True,
 'subpixelMethod': 'exact',
 'readNoise': 16.2,
 'detectorGain': 2.05,
 'dateFormat': 'Two Part',
 'diagnosticMode': False,
 'bkgOrderX': 0,
 'bkgOrderY': 0,
 'backsub_directions': ['X'],
 'saturationVal': None,
 'satNPix': 5,
 'nanReplaceValue': '22e3'}
In [13]:
#Assignimg a object phot
phot = phot_pipeline.phot(paramFile='/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/WASP80b_WLP4_NRCA3_phot_pipeline.yaml') #create a photometric object
phot.showStarChoices(showAps=True,showPlot=True,apColor='red',backColor='pink', figSize=(30,20), xLim=[900,1200],vmax=5000) #Plot the source and background subtraction area
In [14]:
phot.get_allimg_cen(recenter=True,useMultiprocessing=True) #recenter the centroids each time. 
phot.do_phot(useMultiprocessing=True) #extract the photometric data
  0%|                                                  | 0/1227 [00:00<?, ?it/s]2022-02-22 21:24:36,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|                                          | 1/1227 [00:00<11:24,  1.79it/s]2022-02-22 21:24:36,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:36,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 11/1227 [00:00<01:23, 14.64it/s]2022-02-22 21:24:37,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▋                                        | 21/1227 [00:01<01:00, 19.84it/s]2022-02-22 21:24:37,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█                                        | 31/1227 [00:01<00:53, 22.44it/s]2022-02-22 21:24:37,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:37,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▎                                       | 41/1227 [00:02<00:49, 23.96it/s]2022-02-22 21:24:38,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                       | 51/1227 [00:02<00:46, 25.29it/s]2022-02-22 21:24:38,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:38,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██                                       | 61/1227 [00:02<00:46, 25.34it/s]2022-02-22 21:24:38,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▎                                      | 68/1227 [00:02<00:39, 29.55it/s]2022-02-22 21:24:39,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▍                                      | 72/1227 [00:03<00:46, 24.81it/s]2022-02-22 21:24:39,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▋                                      | 81/1227 [00:03<00:45, 25.44it/s]2022-02-22 21:24:39,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▉                                      | 88/1227 [00:03<00:37, 30.65it/s]2022-02-22 21:24:39,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:39,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|███                                      | 92/1227 [00:03<00:45, 24.92it/s]2022-02-22 21:24:40,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 101/1227 [00:04<00:44, 25.13it/s]2022-02-22 21:24:40,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▌                                    | 109/1227 [00:04<00:35, 31.64it/s]2022-02-22 21:24:40,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▋                                    | 114/1227 [00:04<00:42, 25.90it/s]2022-02-22 21:24:40,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:40,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▉                                    | 121/1227 [00:05<00:44, 24.68it/s]2022-02-22 21:24:41,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▏                                   | 129/1227 [00:05<00:34, 32.01it/s]2022-02-22 21:24:41,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▎                                   | 134/1227 [00:05<00:42, 25.73it/s]2022-02-22 21:24:41,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▌                                   | 141/1227 [00:05<00:43, 24.91it/s]2022-02-22 21:24:41,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:41,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▊                                   | 148/1227 [00:05<00:34, 31.11it/s]2022-02-22 21:24:42,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▉                                   | 153/1227 [00:06<00:42, 25.30it/s]2022-02-22 21:24:42,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▏                                  | 161/1227 [00:06<00:41, 25.68it/s]2022-02-22 21:24:42,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                  | 166/1227 [00:06<00:36, 28.90it/s]2022-02-22 21:24:42,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:42,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▌                                  | 171/1227 [00:06<00:40, 25.94it/s]2022-02-22 21:24:43,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▋                                  | 175/1227 [00:06<00:38, 27.50it/s]2022-02-22 21:24:43,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                  | 181/1227 [00:07<00:39, 26.48it/s]2022-02-22 21:24:43,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|██████                                  | 185/1227 [00:07<00:37, 28.09it/s]2022-02-22 21:24:43,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▏                                 | 191/1227 [00:07<00:38, 27.03it/s]2022-02-22 21:24:43,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                 | 194/1227 [00:07<00:39, 26.00it/s]2022-02-22 21:24:43,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:43,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▌                                 | 201/1227 [00:07<00:37, 27.67it/s]2022-02-22 21:24:44,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                 | 204/1227 [00:08<00:39, 26.00it/s]2022-02-22 21:24:44,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▉                                 | 211/1227 [00:08<00:36, 27.74it/s]2022-02-22 21:24:44,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▉                                 | 214/1227 [00:08<00:38, 26.17it/s]2022-02-22 21:24:44,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████▏                                | 221/1227 [00:08<00:36, 27.88it/s]2022-02-22 21:24:44,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████▎                                | 224/1227 [00:08<00:38, 26.36it/s]2022-02-22 21:24:44,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:44,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▍                                | 230/1227 [00:08<00:30, 32.29it/s]2022-02-22 21:24:45,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▋                                | 234/1227 [00:09<00:41, 23.84it/s]2022-02-22 21:24:45,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                                | 241/1227 [00:09<00:33, 29.65it/s]2022-02-22 21:24:45,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                                | 245/1227 [00:09<00:39, 24.83it/s]2022-02-22 21:24:45,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|████████▏                               | 251/1227 [00:09<00:32, 30.37it/s]2022-02-22 21:24:45,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:45,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▎                               | 255/1227 [00:09<00:39, 24.61it/s]2022-02-22 21:24:46,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▌                               | 261/1227 [00:10<00:31, 30.33it/s]2022-02-22 21:24:46,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▋                               | 265/1227 [00:10<00:39, 24.61it/s]2022-02-22 21:24:46,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▊                               | 271/1227 [00:10<00:32, 29.76it/s]2022-02-22 21:24:46,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▉                               | 275/1227 [00:10<00:38, 24.75it/s]2022-02-22 21:24:46,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:46,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████▏                              | 281/1227 [00:10<00:32, 29.51it/s]2022-02-22 21:24:47,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████▎                              | 285/1227 [00:11<00:38, 24.65it/s]2022-02-22 21:24:47,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                              | 290/1227 [00:11<00:32, 28.45it/s]2022-02-22 21:24:47,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▌                              | 294/1227 [00:11<00:39, 23.57it/s]2022-02-22 21:24:47,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▋                              | 299/1227 [00:11<00:32, 28.28it/s]2022-02-22 21:24:47,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▉                              | 303/1227 [00:11<00:38, 24.01it/s]2022-02-22 21:24:47,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:47,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|██████████                              | 308/1227 [00:11<00:33, 27.62it/s]2022-02-22 21:24:48,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|██████████▏                             | 312/1227 [00:12<00:34, 26.19it/s]2022-02-22 21:24:48,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▎                             | 315/1227 [00:12<00:34, 26.48it/s]2022-02-22 21:24:48,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▍                             | 320/1227 [00:12<00:31, 29.15it/s]2022-02-22 21:24:48,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▌                             | 324/1227 [00:12<00:36, 24.62it/s]2022-02-22 21:24:48,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▊                             | 330/1227 [00:12<00:30, 29.50it/s]2022-02-22 21:24:48,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:48,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▉                             | 334/1227 [00:12<00:38, 23.05it/s]2022-02-22 21:24:49,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                             | 340/1227 [00:13<00:31, 28.45it/s]2022-02-22 21:24:49,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████▏                            | 344/1227 [00:13<00:31, 27.97it/s]2022-02-22 21:24:49,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████▎                            | 348/1227 [00:13<00:32, 26.80it/s]2022-02-22 21:24:49,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▍                            | 352/1227 [00:13<00:34, 25.14it/s]2022-02-22 21:24:49,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▌                            | 356/1227 [00:13<00:32, 26.86it/s]2022-02-22 21:24:49,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:49,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▋                            | 360/1227 [00:13<00:30, 28.10it/s]2022-02-22 21:24:50,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▊                            | 363/1227 [00:13<00:31, 27.01it/s]2022-02-22 21:24:50,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▉                            | 366/1227 [00:14<00:34, 24.80it/s]2022-02-22 21:24:50,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|████████████                            | 370/1227 [00:14<00:33, 25.59it/s]2022-02-22 21:24:50,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|████████████▏                           | 373/1227 [00:14<00:34, 24.72it/s]2022-02-22 21:24:50,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▎                           | 376/1227 [00:14<00:33, 25.30it/s]2022-02-22 21:24:50,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▍                           | 380/1227 [00:14<00:32, 26.37it/s]2022-02-22 21:24:50,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▍                           | 383/1227 [00:14<00:32, 26.11it/s]2022-02-22 21:24:50,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:50,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▌                           | 386/1227 [00:14<00:34, 24.51it/s]2022-02-22 21:24:51,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▋                           | 389/1227 [00:14<00:33, 24.71it/s]2022-02-22 21:24:51,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▊                           | 392/1227 [00:15<00:33, 24.86it/s]2022-02-22 21:24:51,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▉                           | 395/1227 [00:15<00:32, 25.94it/s]2022-02-22 21:24:51,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▉                           | 398/1227 [00:15<00:34, 24.28it/s]2022-02-22 21:24:51,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|█████████████                           | 402/1227 [00:15<00:31, 26.53it/s]2022-02-22 21:24:51,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|█████████████▏                          | 405/1227 [00:15<00:30, 27.26it/s]2022-02-22 21:24:51,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|█████████████▎                          | 408/1227 [00:15<00:31, 26.20it/s]2022-02-22 21:24:51,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:51,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▍                          | 412/1227 [00:15<00:28, 28.23it/s]2022-02-22 21:24:52,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▌                          | 415/1227 [00:15<00:29, 27.48it/s]2022-02-22 21:24:52,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▋                          | 418/1227 [00:16<00:31, 25.98it/s]2022-02-22 21:24:52,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▊                          | 422/1227 [00:16<00:28, 27.81it/s]2022-02-22 21:24:52,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▊                          | 425/1227 [00:16<00:28, 27.66it/s]2022-02-22 21:24:52,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▉                          | 428/1227 [00:16<00:31, 25.55it/s]2022-02-22 21:24:52,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|██████████████                          | 432/1227 [00:16<00:28, 27.45it/s]2022-02-22 21:24:52,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|██████████████▏                         | 435/1227 [00:16<00:28, 28.06it/s]2022-02-22 21:24:52,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:52,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▎                         | 438/1227 [00:16<00:30, 25.63it/s]2022-02-22 21:24:53,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▍                         | 442/1227 [00:16<00:28, 27.54it/s]2022-02-22 21:24:53,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▌                         | 445/1227 [00:17<00:28, 27.64it/s]2022-02-22 21:24:53,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▌                         | 448/1227 [00:17<00:30, 25.91it/s]2022-02-22 21:24:53,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▋                         | 452/1227 [00:17<00:28, 27.45it/s]2022-02-22 21:24:53,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▊                         | 455/1227 [00:17<00:27, 27.99it/s]2022-02-22 21:24:53,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▉                         | 458/1227 [00:17<00:29, 25.80it/s]2022-02-22 21:24:53,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|███████████████                         | 462/1227 [00:17<00:27, 27.88it/s]2022-02-22 21:24:53,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|███████████████▏                        | 465/1227 [00:17<00:27, 27.97it/s]2022-02-22 21:24:53,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:53,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|███████████████▎                        | 468/1227 [00:17<00:29, 25.73it/s]2022-02-22 21:24:54,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|███████████████▍                        | 472/1227 [00:18<00:27, 27.68it/s]2022-02-22 21:24:54,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▍                        | 475/1227 [00:18<00:27, 27.58it/s]2022-02-22 21:24:54,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▌                        | 478/1227 [00:18<00:28, 25.96it/s]2022-02-22 21:24:54,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▋                        | 482/1227 [00:18<00:26, 28.08it/s]2022-02-22 21:24:54,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▊                        | 485/1227 [00:18<00:26, 27.67it/s]2022-02-22 21:24:54,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▉                        | 488/1227 [00:18<00:28, 25.87it/s]2022-02-22 21:24:54,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:54,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|████████████████                        | 492/1227 [00:18<00:25, 28.38it/s]2022-02-22 21:24:54,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|████████████████▏                       | 495/1227 [00:18<00:26, 27.23it/s]2022-02-22 21:24:55,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████▏                       | 498/1227 [00:19<00:29, 24.97it/s]2022-02-22 21:24:55,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████▍                       | 503/1227 [00:19<00:23, 30.86it/s]2022-02-22 21:24:55,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████▌                       | 507/1227 [00:19<00:28, 25.24it/s]2022-02-22 21:24:55,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▋                       | 511/1227 [00:19<00:25, 28.43it/s]2022-02-22 21:24:55,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▊                       | 515/1227 [00:19<00:26, 26.71it/s]2022-02-22 21:24:55,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▉                       | 518/1227 [00:19<00:28, 24.85it/s]2022-02-22 21:24:55,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:55,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|█████████████████                       | 522/1227 [00:19<00:25, 27.95it/s]2022-02-22 21:24:56,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|█████████████████                       | 525/1227 [00:20<00:26, 26.51it/s]2022-02-22 21:24:56,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|█████████████████▏                      | 528/1227 [00:20<00:27, 25.16it/s]2022-02-22 21:24:56,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|█████████████████▎                      | 532/1227 [00:20<00:24, 28.06it/s]2022-02-22 21:24:56,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▍                      | 535/1227 [00:20<00:25, 27.37it/s]2022-02-22 21:24:56,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▌                      | 538/1227 [00:20<00:26, 25.69it/s]2022-02-22 21:24:56,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▋                      | 542/1227 [00:20<00:24, 28.52it/s]2022-02-22 21:24:56,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▊                      | 545/1227 [00:20<00:24, 27.55it/s]2022-02-22 21:24:56,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:56,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▊                      | 548/1227 [00:20<00:26, 25.70it/s]2022-02-22 21:24:57,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▉                      | 552/1227 [00:20<00:23, 28.42it/s]2022-02-22 21:24:57,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|██████████████████                      | 555/1227 [00:21<00:24, 27.58it/s]2022-02-22 21:24:57,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|██████████████████▏                     | 558/1227 [00:21<00:25, 25.81it/s]2022-02-22 21:24:57,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████▎                     | 562/1227 [00:21<00:23, 27.83it/s]2022-02-22 21:24:57,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████▍                     | 565/1227 [00:21<00:23, 27.69it/s]2022-02-22 21:24:57,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████▌                     | 568/1227 [00:21<00:25, 26.06it/s]2022-02-22 21:24:57,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▌                     | 571/1227 [00:21<00:25, 25.40it/s]2022-02-22 21:24:57,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:57,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▋                     | 575/1227 [00:21<00:22, 28.57it/s]2022-02-22 21:24:58,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▊                     | 578/1227 [00:21<00:23, 27.20it/s]2022-02-22 21:24:58,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▉                     | 581/1227 [00:22<00:25, 25.77it/s]2022-02-22 21:24:58,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|███████████████████                     | 585/1227 [00:22<00:24, 25.88it/s]2022-02-22 21:24:58,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|███████████████████▏                    | 589/1227 [00:22<00:21, 29.03it/s]2022-02-22 21:24:58,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|███████████████████▎                    | 592/1227 [00:22<00:22, 28.28it/s]2022-02-22 21:24:58,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|███████████████████▍                    | 595/1227 [00:22<00:24, 25.47it/s]2022-02-22 21:24:58,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▌                    | 599/1227 [00:22<00:21, 28.84it/s]2022-02-22 21:24:58,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:58,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▋                    | 602/1227 [00:22<00:22, 28.12it/s]2022-02-22 21:24:59,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▋                    | 605/1227 [00:23<00:25, 24.10it/s]2022-02-22 21:24:59,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▉                    | 610/1227 [00:23<00:21, 28.99it/s]2022-02-22 21:24:59,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|████████████████████                    | 614/1227 [00:23<00:21, 28.25it/s]2022-02-22 21:24:59,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|████████████████████                    | 617/1227 [00:23<00:24, 24.71it/s]2022-02-22 21:24:59,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████▎                   | 622/1227 [00:23<00:21, 28.42it/s]2022-02-22 21:24:59,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████▎                   | 625/1227 [00:23<00:25, 23.62it/s]2022-02-22 21:24:59,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:24:59,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████▌                   | 631/1227 [00:23<00:20, 29.26it/s]2022-02-22 21:25:00,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▋                   | 635/1227 [00:24<00:24, 24.49it/s]2022-02-22 21:25:00,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▉                   | 641/1227 [00:24<00:19, 29.30it/s]2022-02-22 21:25:00,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|█████████████████████                   | 645/1227 [00:24<00:23, 24.86it/s]2022-02-22 21:25:00,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|█████████████████████▏                  | 651/1227 [00:24<00:19, 29.48it/s]2022-02-22 21:25:00,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:00,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|█████████████████████▎                  | 655/1227 [00:24<00:23, 24.15it/s]2022-02-22 21:25:01,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▌                  | 661/1227 [00:25<00:18, 29.96it/s]2022-02-22 21:25:01,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▋                  | 665/1227 [00:25<00:24, 22.59it/s]2022-02-22 21:25:01,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▉                  | 672/1227 [00:25<00:18, 30.34it/s]2022-02-22 21:25:01,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|██████████████████████                  | 677/1227 [00:25<00:20, 26.81it/s]2022-02-22 21:25:01,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:01,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████▏                 | 682/1227 [00:25<00:18, 29.12it/s]2022-02-22 21:25:02,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████▎                 | 686/1227 [00:26<00:21, 25.30it/s]2022-02-22 21:25:02,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████▌                 | 691/1227 [00:26<00:18, 29.67it/s]2022-02-22 21:25:02,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▋                 | 695/1227 [00:26<00:22, 24.17it/s]2022-02-22 21:25:02,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▊                 | 700/1227 [00:26<00:18, 28.63it/s]2022-02-22 21:25:02,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▉                 | 704/1227 [00:26<00:17, 29.34it/s]2022-02-22 21:25:02,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:02,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|███████████████████████                 | 708/1227 [00:26<00:19, 27.18it/s]2022-02-22 21:25:02,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|███████████████████████▏                | 712/1227 [00:26<00:17, 28.68it/s]2022-02-22 21:25:03,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|███████████████████████▎                | 716/1227 [00:27<00:22, 22.31it/s]2022-02-22 21:25:03,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▌                | 721/1227 [00:27<00:20, 25.26it/s]2022-02-22 21:25:03,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▌                | 724/1227 [00:27<00:19, 25.67it/s]2022-02-22 21:25:03,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▋                | 728/1227 [00:27<00:18, 27.21it/s]2022-02-22 21:25:03,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▊                | 731/1227 [00:27<00:18, 26.23it/s]2022-02-22 21:25:03,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:03,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▉                | 734/1227 [00:27<00:18, 26.21it/s]2022-02-22 21:25:03,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|████████████████████████                | 738/1227 [00:27<00:17, 27.34it/s]2022-02-22 21:25:04,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|████████████████████████▏               | 741/1227 [00:28<00:21, 22.61it/s]2022-02-22 21:25:04,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|████████████████████████▎               | 745/1227 [00:28<00:19, 24.43it/s]2022-02-22 21:25:04,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|████████████████████████▍               | 751/1227 [00:28<00:17, 26.71it/s]2022-02-22 21:25:04,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▌               | 755/1227 [00:28<00:18, 25.76it/s]2022-02-22 21:25:04,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:04,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▊               | 761/1227 [00:28<00:16, 27.56it/s]2022-02-22 21:25:05,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▉               | 765/1227 [00:29<00:17, 26.22it/s]2022-02-22 21:25:05,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|█████████████████████████▏              | 771/1227 [00:29<00:16, 28.41it/s]2022-02-22 21:25:05,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|█████████████████████████▎              | 775/1227 [00:29<00:17, 26.00it/s]2022-02-22 21:25:05,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████▍              | 781/1227 [00:29<00:15, 28.18it/s]2022-02-22 21:25:05,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████▌              | 785/1227 [00:29<00:16, 26.28it/s]2022-02-22 21:25:05,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:05,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████▊              | 791/1227 [00:29<00:15, 27.85it/s]2022-02-22 21:25:06,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▉              | 795/1227 [00:30<00:16, 26.18it/s]2022-02-22 21:25:06,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|██████████████████████████              | 801/1227 [00:30<00:15, 27.60it/s]2022-02-22 21:25:06,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|██████████████████████████▏             | 805/1227 [00:30<00:16, 25.85it/s]2022-02-22 21:25:06,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|██████████████████████████▍             | 811/1227 [00:30<00:14, 28.53it/s]2022-02-22 21:25:06,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|██████████████████████████▌             | 814/1227 [00:30<00:14, 28.29it/s]2022-02-22 21:25:06,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:06,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▋             | 817/1227 [00:30<00:17, 23.43it/s]2022-02-22 21:25:07,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▊             | 822/1227 [00:31<00:14, 28.21it/s]2022-02-22 21:25:07,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▉             | 826/1227 [00:31<00:16, 24.14it/s]2022-02-22 21:25:07,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|███████████████████████████             | 832/1227 [00:31<00:13, 28.75it/s]2022-02-22 21:25:07,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|███████████████████████████▎            | 836/1227 [00:31<00:16, 23.37it/s]2022-02-22 21:25:07,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:07,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████▍            | 842/1227 [00:31<00:13, 27.68it/s]2022-02-22 21:25:08,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████▌            | 846/1227 [00:32<00:15, 24.35it/s]2022-02-22 21:25:08,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████▋            | 850/1227 [00:32<00:14, 26.88it/s]2022-02-22 21:25:08,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▊            | 854/1227 [00:32<00:14, 26.43it/s]2022-02-22 21:25:08,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▉            | 857/1227 [00:32<00:14, 24.79it/s]2022-02-22 21:25:08,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|████████████████████████████            | 862/1227 [00:32<00:12, 29.35it/s]2022-02-22 21:25:08,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:08,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|████████████████████████████▏           | 866/1227 [00:32<00:14, 24.38it/s]2022-02-22 21:25:09,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|████████████████████████████▍           | 872/1227 [00:32<00:11, 30.09it/s]2022-02-22 21:25:09,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|████████████████████████████▌           | 876/1227 [00:33<00:14, 24.42it/s]2022-02-22 21:25:09,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▋           | 881/1227 [00:33<00:12, 28.10it/s]2022-02-22 21:25:09,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▊           | 885/1227 [00:33<00:13, 24.95it/s]2022-02-22 21:25:09,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▉           | 889/1227 [00:33<00:12, 27.16it/s]2022-02-22 21:25:09,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:09,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|█████████████████████████████▏          | 894/1227 [00:33<00:12, 27.23it/s]2022-02-22 21:25:10,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|█████████████████████████████▏          | 897/1227 [00:33<00:12, 25.86it/s]2022-02-22 21:25:10,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|█████████████████████████████▍          | 902/1227 [00:34<00:10, 30.65it/s]2022-02-22 21:25:10,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|█████████████████████████████▌          | 906/1227 [00:34<00:13, 24.63it/s]2022-02-22 21:25:10,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|█████████████████████████████▋          | 911/1227 [00:34<00:10, 29.41it/s]2022-02-22 21:25:10,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▊          | 915/1227 [00:34<00:12, 24.22it/s]2022-02-22 21:25:10,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|██████████████████████████████          | 921/1227 [00:34<00:10, 29.91it/s]2022-02-22 21:25:10,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:10,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|██████████████████████████████▏         | 925/1227 [00:35<00:12, 24.19it/s]2022-02-22 21:25:11,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|██████████████████████████████▎         | 931/1227 [00:35<00:09, 30.16it/s]2022-02-22 21:25:11,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|██████████████████████████████▍         | 935/1227 [00:35<00:12, 23.96it/s]2022-02-22 21:25:11,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████▋         | 940/1227 [00:35<00:10, 28.50it/s]2022-02-22 21:25:11,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:11,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████▊         | 944/1227 [00:35<00:11, 23.91it/s]2022-02-22 21:25:12,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████▊         | 947/1227 [00:35<00:11, 24.85it/s]2022-02-22 21:25:12,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|███████████████████████████████         | 953/1227 [00:35<00:09, 30.23it/s]2022-02-22 21:25:12,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|███████████████████████████████▏        | 957/1227 [00:36<00:10, 25.43it/s]2022-02-22 21:25:12,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|███████████████████████████████▎        | 962/1227 [00:36<00:09, 29.26it/s]2022-02-22 21:25:12,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|███████████████████████████████▍        | 966/1227 [00:36<00:10, 24.12it/s]2022-02-22 21:25:12,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|███████████████████████████████▋        | 972/1227 [00:36<00:08, 28.84it/s]2022-02-22 21:25:12,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:12,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▊        | 976/1227 [00:36<00:10, 24.65it/s]2022-02-22 21:25:13,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|████████████████████████████████        | 982/1227 [00:37<00:07, 30.69it/s]2022-02-22 21:25:13,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|████████████████████████████████▏       | 986/1227 [00:37<00:09, 24.48it/s]2022-02-22 21:25:13,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|████████████████████████████████▎       | 993/1227 [00:37<00:08, 28.28it/s]2022-02-22 21:25:13,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|████████████████████████████████▌       | 997/1227 [00:37<00:08, 25.89it/s]2022-02-22 21:25:13,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:13,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 1003/1227 [00:37<00:07, 28.42it/s]2022-02-22 21:25:14,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 1007/1227 [00:38<00:08, 25.43it/s]2022-02-22 21:25:14,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▏      | 1013/1227 [00:38<00:07, 28.48it/s]2022-02-22 21:25:14,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▎      | 1017/1227 [00:38<00:08, 25.54it/s]2022-02-22 21:25:14,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▌      | 1023/1227 [00:38<00:07, 28.37it/s]2022-02-22 21:25:14,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:14,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▌      | 1026/1227 [00:38<00:07, 25.37it/s]2022-02-22 21:25:15,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▋      | 1029/1227 [00:38<00:07, 26.01it/s]2022-02-22 21:25:15,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▊      | 1033/1227 [00:39<00:06, 28.13it/s]2022-02-22 21:25:15,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▉      | 1036/1227 [00:39<00:07, 25.57it/s]2022-02-22 21:25:15,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████      | 1042/1227 [00:39<00:05, 33.00it/s]2022-02-22 21:25:15,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▏     | 1046/1227 [00:39<00:07, 24.94it/s]2022-02-22 21:25:15,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▍     | 1051/1227 [00:39<00:05, 29.90it/s]2022-02-22 21:25:15,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:15,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▌     | 1055/1227 [00:39<00:07, 23.89it/s]2022-02-22 21:25:16,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▋     | 1061/1227 [00:40<00:05, 29.51it/s]2022-02-22 21:25:16,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▊     | 1065/1227 [00:40<00:06, 24.12it/s]2022-02-22 21:25:16,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|██████████████████████████████████     | 1071/1227 [00:40<00:05, 29.71it/s]2022-02-22 21:25:16,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▏    | 1075/1227 [00:40<00:06, 24.21it/s]2022-02-22 21:25:16,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▎    | 1081/1227 [00:40<00:04, 29.56it/s]2022-02-22 21:25:16,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:16,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 1085/1227 [00:41<00:05, 24.21it/s]2022-02-22 21:25:17,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 1091/1227 [00:41<00:04, 29.19it/s]2022-02-22 21:25:17,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 1095/1227 [00:41<00:05, 24.73it/s]2022-02-22 21:25:17,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|██████████████████████████████████▉    | 1101/1227 [00:41<00:04, 29.60it/s]2022-02-22 21:25:17,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:17,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████    | 1105/1227 [00:41<00:04, 24.83it/s]2022-02-22 21:25:17,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 1109/1227 [00:41<00:04, 27.14it/s]2022-02-22 21:25:18,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 1113/1227 [00:42<00:04, 25.55it/s]2022-02-22 21:25:18,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 1116/1227 [00:42<00:04, 26.25it/s]2022-02-22 21:25:18,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▌   | 1120/1227 [00:42<00:03, 29.13it/s]2022-02-22 21:25:18,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▋   | 1124/1227 [00:42<00:04, 23.63it/s]2022-02-22 21:25:18,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 1128/1227 [00:42<00:03, 26.61it/s]2022-02-22 21:25:18,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|████████████████████████████████████   | 1133/1227 [00:42<00:03, 26.58it/s]2022-02-22 21:25:18,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:18,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 1137/1227 [00:42<00:03, 25.84it/s]2022-02-22 21:25:19,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▎  | 1143/1227 [00:43<00:03, 27.09it/s]2022-02-22 21:25:19,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▍  | 1147/1227 [00:43<00:02, 26.74it/s]2022-02-22 21:25:19,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▋  | 1153/1227 [00:43<00:02, 25.99it/s]2022-02-22 21:25:19,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▊  | 1157/1227 [00:43<00:02, 27.15it/s]2022-02-22 21:25:19,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:19,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|████████████████████████████████████▉  | 1163/1227 [00:43<00:02, 25.96it/s]2022-02-22 21:25:20,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████  | 1167/1227 [00:44<00:02, 27.37it/s]2022-02-22 21:25:20,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▎ | 1173/1227 [00:44<00:01, 27.04it/s]2022-02-22 21:25:20,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▍ | 1177/1227 [00:44<00:01, 27.35it/s]2022-02-22 21:25:20,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▌ | 1183/1227 [00:44<00:01, 27.26it/s]2022-02-22 21:25:20,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:20,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▋ | 1186/1227 [00:44<00:01, 27.53it/s]2022-02-22 21:25:20,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▊ | 1190/1227 [00:44<00:01, 29.95it/s]2022-02-22 21:25:21,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▉ | 1194/1227 [00:45<00:01, 26.45it/s]2022-02-22 21:25:21,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████ | 1197/1227 [00:45<00:01, 26.45it/s]2022-02-22 21:25:21,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▏| 1203/1227 [00:45<00:00, 27.26it/s]2022-02-22 21:25:21,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▎| 1206/1227 [00:45<00:00, 26.47it/s]2022-02-22 21:25:21,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▍| 1210/1227 [00:45<00:00, 29.02it/s]2022-02-22 21:25:21,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▌| 1213/1227 [00:45<00:00, 26.90it/s]2022-02-22 21:25:21,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:21,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:22,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▋| 1216/1227 [00:45<00:00, 25.72it/s]2022-02-22 21:25:22,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:22,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:22,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:22,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:22,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:22,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▋| 1219/1227 [00:45<00:00, 26.21it/s]2022-02-22 21:25:22,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:22,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:22,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:22,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:22,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▊| 1223/1227 [00:46<00:00, 28.04it/s]2022-02-22 21:25:22,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:22,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:22,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|███████████████████████████████████████| 1227/1227 [00:46<00:00, 26.55it/s]
2022-02-22 21:25:22,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

  0%|                                                  | 0/1227 [00:00<?, ?it/s]2022-02-22 21:25:22,817 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:22,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:22,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:22,862 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:22,864 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:22,865 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  0%|                                          | 1/1227 [00:00<03:42,  5.51it/s]2022-02-22 21:25:22,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:22,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:22,889 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:22,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:22,988 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:22,997 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:22,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,011 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,013 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,013 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▎                                        | 11/1227 [00:00<00:30, 39.47it/s]2022-02-22 21:25:23,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,021 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,086 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,094 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  2%|▋                                        | 21/1227 [00:00<00:20, 59.86it/s]2022-02-22 21:25:23,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,138 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,171 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,184 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,227 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█                                        | 32/1227 [00:00<00:16, 72.98it/s]2022-02-22 21:25:23,259 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,274 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,275 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,291 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,305 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,309 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,325 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█▍                                       | 42/1227 [00:00<00:14, 80.63it/s]2022-02-22 21:25:23,369 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,384 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,403 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,407 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,428 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,431 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,435 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▋                                       | 51/1227 [00:00<00:14, 80.58it/s]2022-02-22 21:25:23,469 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,488 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,493 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,519 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,523 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,532 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,537 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,546 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|██                                       | 60/1227 [00:00<00:14, 82.16it/s]2022-02-22 21:25:23,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,588 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,602 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,628 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,639 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,646 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,648 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,649 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▎                                      | 69/1227 [00:00<00:13, 84.30it/s]2022-02-22 21:25:23,655 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,698 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,704 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▋                                      | 79/1227 [00:01<00:12, 88.92it/s]2022-02-22 21:25:23,756 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,759 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,760 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,792 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,806 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,833 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|██▉                                      | 89/1227 [00:01<00:12, 92.05it/s]2022-02-22 21:25:23,862 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,865 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,868 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,874 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,919 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,920 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,937 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,948 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,968 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:23,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███▎                                    | 100/1227 [00:01<00:12, 90.94it/s]2022-02-22 21:25:23,984 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,013 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,075 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,075 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  9%|███▌                                    | 110/1227 [00:01<00:12, 92.70it/s]2022-02-22 21:25:24,087 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,105 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,114 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,122 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,131 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,139 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,169 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,173 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,179 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|███▉                                    | 120/1227 [00:01<00:11, 94.09it/s]2022-02-22 21:25:24,190 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,194 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,215 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,244 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,246 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,246 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,267 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,273 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,281 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▏                                   | 130/1227 [00:01<00:11, 94.65it/s]2022-02-22 21:25:24,297 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,298 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,308 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,316 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,337 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,352 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,377 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▌                                   | 140/1227 [00:01<00:11, 94.97it/s]2022-02-22 21:25:24,392 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,412 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,414 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,420 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,426 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,426 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,448 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 12%|████▉                                   | 150/1227 [00:01<00:11, 96.14it/s]2022-02-22 21:25:24,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,517 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,517 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,521 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,541 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,555 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,562 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,566 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,580 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████▏                                  | 160/1227 [00:01<00:11, 96.61it/s]2022-02-22 21:25:24,611 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,636 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,642 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,645 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,668 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,668 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,683 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,697 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 14%|█████▌                                  | 170/1227 [00:02<00:10, 96.54it/s]2022-02-22 21:25:24,720 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,727 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,728 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,742 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,755 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,769 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,772 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,781 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,806 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|█████▊                                  | 180/1227 [00:02<00:11, 94.75it/s]2022-02-22 21:25:24,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,843 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,846 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,848 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,852 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,870 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,894 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|██████▏                                 | 190/1227 [00:02<00:10, 95.85it/s]2022-02-22 21:25:24,931 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,938 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,945 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,949 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,965 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,972 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,983 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:24,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████▌                                 | 200/1227 [00:02<00:10, 95.97it/s]2022-02-22 21:25:25,031 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,053 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,094 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,095 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,096 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,109 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▊                                 | 210/1227 [00:02<00:10, 95.08it/s]2022-02-22 21:25:25,131 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,145 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,153 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,164 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,167 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,186 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,196 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,214 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|███████▏                                | 220/1227 [00:02<00:10, 95.63it/s]2022-02-22 21:25:25,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,247 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,253 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,253 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,281 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,288 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,306 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,314 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▍                                | 230/1227 [00:02<00:10, 96.15it/s]2022-02-22 21:25:25,332 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,353 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,362 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,367 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,372 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,382 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,395 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,408 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,417 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 20%|███████▊                                | 240/1227 [00:02<00:10, 96.26it/s]2022-02-22 21:25:25,433 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,450 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,455 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,489 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,493 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,502 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,508 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,511 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,520 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 20%|████████▏                               | 250/1227 [00:02<00:10, 96.27it/s]2022-02-22 21:25:25,551 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,552 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,569 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,603 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,607 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████▍                               | 260/1227 [00:02<00:10, 96.53it/s]2022-02-22 21:25:25,641 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,667 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,669 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,670 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,705 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,709 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,731 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▊                               | 270/1227 [00:03<00:10, 95.62it/s]2022-02-22 21:25:25,755 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,771 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,778 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,779 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,796 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,809 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,846 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,852 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|█████████▏                              | 280/1227 [00:03<00:10, 90.12it/s]2022-02-22 21:25:25,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,889 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,898 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,911 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,960 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,975 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▌                              | 292/1227 [00:03<00:09, 97.57it/s]2022-02-22 21:25:25,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:25,995 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,011 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,020 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,051 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,080 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|█████████▊                              | 302/1227 [00:03<00:09, 96.51it/s]2022-02-22 21:25:26,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,108 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,122 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,145 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,146 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,158 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,160 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,176 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|██████████▏                             | 312/1227 [00:03<00:09, 97.28it/s]2022-02-22 21:25:26,209 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,213 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,237 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,237 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,250 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,290 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,298 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████▍                             | 322/1227 [00:03<00:10, 89.62it/s]2022-02-22 21:25:26,323 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,331 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,332 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,335 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,337 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,401 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,408 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,423 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▊                             | 332/1227 [00:03<00:10, 89.41it/s]2022-02-22 21:25:26,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,452 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,464 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,495 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,505 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,512 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,514 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,523 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|███████████▏                            | 342/1227 [00:03<00:09, 92.07it/s]2022-02-22 21:25:26,532 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,537 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,546 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,597 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,605 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,613 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,621 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▍                            | 352/1227 [00:03<00:09, 93.15it/s]2022-02-22 21:25:26,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,649 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,655 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,667 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,673 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,726 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,726 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,734 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▊                            | 362/1227 [00:04<00:09, 92.90it/s]2022-02-22 21:25:26,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,749 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,772 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,775 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,813 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,824 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,827 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,836 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,841 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|████████████▏                           | 372/1227 [00:04<00:09, 92.33it/s]2022-02-22 21:25:26,872 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,889 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,909 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,948 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|████████████▍                           | 382/1227 [00:04<00:09, 92.97it/s]2022-02-22 21:25:26,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,978 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:26,999 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,019 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,034 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▊                           | 392/1227 [00:04<00:08, 93.67it/s]2022-02-22 21:25:27,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,072 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,078 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,083 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,086 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,090 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,094 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,139 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|█████████████                           | 402/1227 [00:04<00:08, 93.40it/s]2022-02-22 21:25:27,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,208 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,215 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,230 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,231 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,235 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,257 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,259 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████▍                          | 413/1227 [00:04<00:08, 97.11it/s]2022-02-22 21:25:27,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,295 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,319 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,361 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,374 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,380 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,380 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████▊                          | 423/1227 [00:04<00:08, 90.98it/s]2022-02-22 21:25:27,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,439 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,454 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,464 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,473 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,475 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,476 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,496 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,515 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|██████████████                          | 433/1227 [00:04<00:08, 89.39it/s]2022-02-22 21:25:27,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,545 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,553 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,572 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,579 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,590 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,602 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,608 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,624 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|██████████████▍                         | 443/1227 [00:04<00:08, 89.83it/s]2022-02-22 21:25:27,633 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,654 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,685 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,728 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,730 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,731 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,738 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,742 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,756 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▊                         | 453/1227 [00:05<00:09, 83.91it/s]2022-02-22 21:25:27,767 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,785 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,787 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,846 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,869 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,872 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,877 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,880 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,885 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,896 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|███████████████                         | 462/1227 [00:05<00:09, 77.82it/s]2022-02-22 21:25:27,901 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,984 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,987 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:27,991 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,001 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,004 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,004 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|███████████████▍                        | 472/1227 [00:05<00:09, 83.19it/s]2022-02-22 21:25:28,013 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,095 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,095 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,102 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,118 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,122 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████▋                        | 482/1227 [00:05<00:09, 82.38it/s]2022-02-22 21:25:28,124 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,149 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,174 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,230 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,235 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|████████████████                        | 492/1227 [00:05<00:08, 84.56it/s]2022-02-22 21:25:28,244 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,253 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,268 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,282 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,317 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,331 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,334 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,347 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|████████████████▎                       | 502/1227 [00:05<00:08, 86.95it/s]2022-02-22 21:25:28,352 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,358 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,427 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,436 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,439 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▋                       | 512/1227 [00:05<00:08, 89.37it/s]2022-02-22 21:25:28,451 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,451 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,457 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,467 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,490 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,549 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,549 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,551 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,556 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|█████████████████                       | 522/1227 [00:05<00:07, 88.80it/s]2022-02-22 21:25:28,576 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,580 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,584 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,603 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,653 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,654 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,658 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,660 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|█████████████████▎                      | 532/1227 [00:05<00:07, 91.31it/s]2022-02-22 21:25:28,668 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,672 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,690 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,690 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,708 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,755 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,765 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,766 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,768 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,769 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,772 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|█████████████████▋                      | 542/1227 [00:06<00:07, 92.89it/s]2022-02-22 21:25:28,780 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,811 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,855 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|██████████████████                      | 553/1227 [00:06<00:07, 94.32it/s]2022-02-22 21:25:28,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,900 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,949 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,978 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:28,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,000 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,002 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,003 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|██████████████████▎                     | 563/1227 [00:06<00:07, 89.46it/s]2022-02-22 21:25:29,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,022 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,027 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,069 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,093 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,109 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▋                     | 574/1227 [00:06<00:06, 94.32it/s]2022-02-22 21:25:29,126 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,136 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,142 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,144 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,163 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,195 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|███████████████████                     | 585/1227 [00:06<00:06, 95.71it/s]2022-02-22 21:25:29,228 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,229 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,234 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,270 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,272 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,273 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,296 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,312 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|███████████████████▍                    | 595/1227 [00:06<00:06, 96.84it/s]2022-02-22 21:25:29,336 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,344 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,360 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,374 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,378 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,384 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,408 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,411 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|███████████████████▎                   | 606/1227 [00:06<00:06, 100.03it/s]2022-02-22 21:25:29,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,455 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,458 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,462 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,478 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,481 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,496 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,546 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,555 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|████████████████████                    | 617/1227 [00:06<00:06, 93.31it/s]2022-02-22 21:25:29,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,584 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,642 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|████████████████████▍                   | 627/1227 [00:06<00:06, 94.49it/s]2022-02-22 21:25:29,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,683 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,704 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,710 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,714 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,750 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████▊                   | 637/1227 [00:07<00:06, 95.69it/s]2022-02-22 21:25:29,785 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,793 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,799 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,817 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,817 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,852 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,852 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|█████████████████████                   | 647/1227 [00:07<00:06, 96.04it/s]2022-02-22 21:25:29,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,906 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,909 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,914 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,933 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,934 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,936 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:29,970 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|█████████████████████▍                  | 657/1227 [00:07<00:06, 94.16it/s]2022-02-22 21:25:30,004 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,004 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,011 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,012 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,019 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,031 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,037 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,045 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,055 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|█████████████████████▋                  | 667/1227 [00:07<00:05, 94.90it/s]2022-02-22 21:25:30,096 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,101 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,119 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,122 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,139 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,142 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|██████████████████████                  | 677/1227 [00:07<00:05, 95.48it/s]2022-02-22 21:25:30,203 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,208 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,209 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,216 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,217 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,235 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,241 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,257 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,265 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,274 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,290 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|██████████████████████▍                 | 687/1227 [00:07<00:05, 95.83it/s]2022-02-22 21:25:30,306 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,305 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,323 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,323 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,352 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,374 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,387 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████▋                 | 697/1227 [00:07<00:05, 96.97it/s]2022-02-22 21:25:30,398 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,407 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,412 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,423 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,438 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,442 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,476 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|███████████████████████                 | 707/1227 [00:07<00:05, 97.16it/s]2022-02-22 21:25:30,500 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,511 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,537 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,538 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,551 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,556 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|███████████████████████▎                | 717/1227 [00:07<00:05, 97.81it/s]2022-02-22 21:25:30,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,610 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,628 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,657 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|███████████████████████▋                | 727/1227 [00:08<00:05, 98.40it/s]2022-02-22 21:25:30,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,713 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,760 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,761 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,781 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,789 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|████████████████████████                | 737/1227 [00:08<00:05, 97.55it/s]2022-02-22 21:25:30,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,841 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,880 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,885 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,887 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 61%|████████████████████████▎               | 747/1227 [00:08<00:05, 93.53it/s]2022-02-22 21:25:30,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:30,957 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,001 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,002 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,011 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,020 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,022 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████▋               | 757/1227 [00:08<00:05, 87.30it/s]2022-02-22 21:25:31,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,067 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,114 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,124 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,147 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,148 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,155 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████▉               | 766/1227 [00:08<00:05, 86.55it/s]2022-02-22 21:25:31,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,169 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,176 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,213 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,213 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,237 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,241 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,265 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,278 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|█████████████████████████▎              | 775/1227 [00:08<00:05, 80.80it/s]2022-02-22 21:25:31,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,332 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,344 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,348 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,353 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,372 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,382 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,382 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,397 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|█████████████████████████▋              | 788/1227 [00:08<00:04, 89.77it/s]2022-02-22 21:25:31,420 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,450 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,460 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,476 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,487 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,493 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|██████████████████████████              | 798/1227 [00:08<00:04, 90.32it/s]2022-02-22 21:25:31,521 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,551 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,579 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,596 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|██████████████████████████▍             | 810/1227 [00:08<00:04, 97.31it/s]2022-02-22 21:25:31,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,639 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,675 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,680 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,697 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,709 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|██████████████████████████▋             | 820/1227 [00:09<00:04, 94.19it/s]2022-02-22 21:25:31,737 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,738 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,740 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,754 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,798 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,811 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,820 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,821 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,824 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,824 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,832 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,855 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,856 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|███████████████████████████             | 830/1227 [00:09<00:04, 88.44it/s]2022-02-22 21:25:31,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,919 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,933 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,947 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,947 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,957 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:31,957 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|███████████████████████████▍            | 842/1227 [00:09<00:04, 95.55it/s]2022-02-22 21:25:31,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,019 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,040 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,040 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,046 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,059 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,068 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|███████████████████████████▊            | 852/1227 [00:09<00:04, 93.08it/s]2022-02-22 21:25:32,105 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,107 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,147 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|████████████████████████████            | 862/1227 [00:09<00:03, 93.18it/s]2022-02-22 21:25:32,194 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,250 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,256 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,282 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|████████████████████████████▍           | 872/1227 [00:09<00:03, 89.02it/s]2022-02-22 21:25:32,314 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,322 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,337 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,350 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,402 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,411 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,412 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,413 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|████████████████████████████▊           | 882/1227 [00:09<00:03, 88.57it/s]2022-02-22 21:25:32,428 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,438 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,438 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,469 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,502 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,508 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,525 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,537 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,538 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|█████████████████████████████           | 893/1227 [00:09<00:03, 90.70it/s]2022-02-22 21:25:32,538 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,540 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,553 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,588 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,624 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,624 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,631 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,632 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,636 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|█████████████████████████████▍          | 903/1227 [00:09<00:03, 92.57it/s]2022-02-22 21:25:32,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,645 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,683 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,727 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,729 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,740 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,742 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|█████████████████████████████▊          | 913/1227 [00:10<00:03, 94.23it/s]2022-02-22 21:25:32,749 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,784 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,786 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,830 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,836 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|██████████████████████████████          | 923/1227 [00:10<00:03, 95.78it/s]2022-02-22 21:25:32,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|██████████████████████████████▍         | 934/1227 [00:10<00:03, 96.85it/s]2022-02-22 21:25:32,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,978 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,978 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:32,997 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,016 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,016 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,046 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,053 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|██████████████████████████████▊         | 945/1227 [00:10<00:02, 95.38it/s]2022-02-22 21:25:33,085 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,087 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,101 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,116 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,139 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 78%|███████████████████████████████▏        | 955/1227 [00:10<00:02, 95.19it/s]2022-02-22 21:25:33,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,193 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,223 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,227 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,235 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,247 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,260 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,274 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|███████████████████████████████▍        | 965/1227 [00:10<00:02, 94.01it/s]2022-02-22 21:25:33,295 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,297 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,320 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,324 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,332 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,336 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,378 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|███████████████████████████████▊        | 975/1227 [00:10<00:02, 95.00it/s]2022-02-22 21:25:33,399 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,402 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,403 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,421 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,429 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,440 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,440 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,477 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|████████████████████████████████        | 985/1227 [00:10<00:02, 96.27it/s]2022-02-22 21:25:33,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,500 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,501 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,505 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,555 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,580 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|████████████████████████████████▍       | 995/1227 [00:10<00:02, 96.58it/s]2022-02-22 21:25:33,596 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,599 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,614 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,645 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,666 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,680 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,684 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|███████████████████████████████▉       | 1006/1227 [00:11<00:02, 99.44it/s]2022-02-22 21:25:33,701 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,710 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,737 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,757 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,767 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,767 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,781 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,798 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▎      | 1017/1227 [00:11<00:02, 97.03it/s]2022-02-22 21:25:33,817 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,835 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,858 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,870 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,907 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,909 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,914 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▋      | 1027/1227 [00:11<00:02, 97.18it/s]2022-02-22 21:25:33,937 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,947 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,955 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,971 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,980 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,983 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:33,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,002 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,015 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|████████████████████████████████▉      | 1037/1227 [00:11<00:01, 97.02it/s]2022-02-22 21:25:34,027 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,052 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,059 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,067 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,081 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,117 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|█████████████████████████████████▎     | 1047/1227 [00:11<00:01, 97.29it/s]2022-02-22 21:25:34,128 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,130 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,159 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,162 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,212 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,217 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▌     | 1057/1227 [00:11<00:01, 97.74it/s]2022-02-22 21:25:34,230 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,264 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,265 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,300 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,302 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,316 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|█████████████████████████████████▉     | 1067/1227 [00:11<00:01, 98.24it/s]2022-02-22 21:25:34,331 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,355 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,374 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,374 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,384 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,391 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,412 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,427 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|█████████████████████████████████▍    | 1078/1227 [00:11<00:01, 100.55it/s]2022-02-22 21:25:34,477 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,487 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,497 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,510 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,511 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,512 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,517 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,518 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,525 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|█████████████████████████████████▋    | 1089/1227 [00:11<00:01, 101.21it/s]2022-02-22 21:25:34,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,590 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,599 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,607 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,632 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,642 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|██████████████████████████████████▉    | 1100/1227 [00:11<00:01, 93.95it/s]2022-02-22 21:25:34,693 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,710 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,713 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,736 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,752 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|███████████████████████████████████▎   | 1110/1227 [00:12<00:01, 94.32it/s]2022-02-22 21:25:34,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,806 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,806 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,816 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,858 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,863 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,870 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,876 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,889 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▌   | 1120/1227 [00:12<00:01, 92.74it/s]2022-02-22 21:25:34,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,921 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,922 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,966 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,968 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,971 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:34,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|███████████████████████████████████▉   | 1130/1227 [00:12<00:01, 90.98it/s]2022-02-22 21:25:35,020 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,029 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,032 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,069 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,075 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,088 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████▎  | 1141/1227 [00:12<00:00, 95.60it/s]2022-02-22 21:25:35,127 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,137 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,138 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,163 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,177 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,185 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,193 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,194 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,196 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▌  | 1151/1227 [00:12<00:00, 96.03it/s]2022-02-22 21:25:35,230 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,235 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,299 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|████████████████████████████████████▉  | 1161/1227 [00:12<00:00, 94.42it/s]2022-02-22 21:25:35,326 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,347 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,398 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,398 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,412 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|█████████████████████████████████████▏ | 1171/1227 [00:12<00:00, 93.01it/s]2022-02-22 21:25:35,443 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,447 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,506 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,517 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,519 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,552 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,557 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 96%|█████████████████████████████████████▌ | 1181/1227 [00:12<00:00, 88.50it/s]2022-02-22 21:25:35,579 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,610 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,615 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,622 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|█████████████████████████████████████▊ | 1191/1227 [00:12<00:00, 90.21it/s]2022-02-22 21:25:35,669 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,686 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,690 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,723 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,724 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,757 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████▏| 1201/1227 [00:13<00:00, 90.37it/s]2022-02-22 21:25:35,785 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,788 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,798 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,807 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,814 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,821 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,862 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,873 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▍| 1211/1227 [00:13<00:00, 92.86it/s]2022-02-22 21:25:35,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,898 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,909 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,921 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,960 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,961 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

100%|██████████████████████████████████████▊| 1221/1227 [00:13<00:00, 94.86it/s]2022-02-22 21:25:35,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,995 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:35,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:36,001 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:25:36,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

100%|███████████████████████████████████████| 1227/1227 [00:13<00:00, 91.96it/s]
In [15]:
#Tshirt: net aperture
Flux, Flux_error = phot.get_tSeries() #The flux data and flux data errors
normalized_flux_tshirt = Flux['Flux 0']/Flux['Flux 0'][0] #normalized net aperture sum
std_tshirt = np.std(normalized_flux_tshirt[0:20]) #calculated standard deviation
relative_error_tshirt = (Flux_error['Error 0']/Flux['Flux 0'])

#MAD: 
deviation = normalized_flux_tshirt[0:seg01_len] - np.median(normalized_flux_tshirt[0:seg01_len])
mad = np.median(np.abs(deviation))*1.48

print(style.BOLD+"Tshirt Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad*10**6))
print(style.BOLD+"Tshirt Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_tshirt*10**6))
print(style.BOLD+"Median Relative Errors Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_tshirt)*10**6))

plt.errorbar(Flux['Time (JD)'],normalized_flux_tshirt,yerr=relative_error_tshirt,fmt='b.',markersize=4,elinewidth=1,ecolor='silver')
Tshirt Calculated Net Aperture Sum MAD (ppm): 4868.474503617777
Tshirt Calculated Net Aperture Sum std (ppm): 5665.867389205953
Median Relative Errors Net Aperture Sum (ppm): 4509.583815451087
Out[15]:
<ErrorbarContainer object of 3 artists>

$\textbf{Plotting Results: Altered}$¶

Initial pipeline results with altered aperture sizes. In this particular simulation, there is an edge effect (the observation is cut off on the top and bottom). We want to see how observations that turn out this way in real life can effect the results the pipline returns.

TSOPHOT reference files are ASDF format. An object called ‘radii’ in a TSOPHOT file defines the radii that the step needs. This object is a list of one or more dictionaries. Each such dictionary has four keys: ‘pupil’, ‘radius’, ‘radius_inner’, and ‘radius_outer’. The particular one of these dictionaries to use is selected by comparing meta.instrument.pupil with the value corresponding to ‘pupil’ in each dictionary. If an exact match is found, that dictionary will be used. If no match is found, the first dictionary with ‘pupil’: ‘ANY’ will be selected. The radii will be taken from the values of keys ‘radius’, ‘radius_inner’, and ‘radius_outer’.

NOTE: You must run these sections in order because it requires re-running stage 3 (will take a few minutes).

$\textbf{30-30-50 Radii}$¶

$\textbf{TSO Photometry Reference File: Radii Parameters}$¶

The original radii parameters are: radii': [{'pupil': 'WLP8', 'radius': 50.0, 'radius_inner': 60.0, 'radius_outer': 70.0}, {'pupil': 'ANY', 'radius': 3.0, 'radius_inner': 4.0, 'radius_outer': 5.0}]}

The altered radii parameters are (to try the pupil = CLEAR parameters): radius: 30.0, radius_inner: 30.0, and radius_outer: 50.0

In [23]:
original_tsophot=asdf.open("/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_tsophot_0001.asdf") #the original tsophot reference file
original_tsophot.tree #print the original tsophot reference file

#adjust the radii parameters
original_tsophot.tree['radii'] = [{'pupil': 'WLP8',
   'radius': 50.0,
   'radius_inner': 60.0,
   'radius_outer': 70.0}, #For this particular data set, the outer radius limit is 62 due to edge effects on detector
  {'pupil': 'ANY', 'radius': 30.0, 'radius_inner': 30.0, 'radius_outer': 50.0}]
original_tsophot.write_to('adjusted_jwst_nircam_tsophot_0001.asdf')
adjusted_tsophot=asdf.open('adjusted_jwst_nircam_tsophot_0001.asdf') #the adjusted tsophot reference file
adjusted_tsophot.tree #print the adjusted tsophot reference file
Out[23]:
{'asdf_library': {'author': 'Space Telescope Science Institute',
  'homepage': 'http://github.com/spacetelescope/asdf',
  'name': 'asdf',
  'version': '2.7.2'},
 'history': {'entries': [{'description': 'File created based on values of aperture radii for NIRCam that were specified as constants in tso_photometry_step.py.',
    'time': datetime.datetime(2018, 7, 13, 17, 20, 5)}],
  'extensions': [{'extension_class': 'asdf.extension.BuiltinExtension',
    'software': {'name': 'asdf', 'version': '2.7.2'}},
   {'extension_class': 'astropy.io.misc.asdf.extension.AstropyAsdfExtension',
    'software': {'name': 'astropy', 'version': '4.2.1'}},
   {'extension_class': 'astropy.io.misc.asdf.extension.AstropyExtension',
    'software': {'name': 'astropy', 'version': '4.2.1'}},
   {'extension_class': 'gwcs.extension.GWCSExtension',
    'software': {'name': 'gwcs', 'version': '0.16.1'}}]},
 'meta': {'author': 'NIRCam IDT; P. Hodge',
  'date': '2018-07-13T17:20:00',
  'description': 'aperture radii for tso_photometry',
  'exposure': {'type': 'NRC_TSIMAGE'},
  'filename': 'nircam_tsophot.asdf',
  'instrument': {'name': 'NIRCAM'},
  'model_type': 'TsoPhotModel',
  'pedigree': 'GROUND',
  'reftype': 'tsophot',
  'telescope': 'JWST',
  'useafter': '2015-01-01T00:00:00',
  'visit': {'tsovisit': True}},
 'radii': [{'pupil': 'WLP8',
   'radius': 50.0,
   'radius_inner': 60.0,
   'radius_outer': 70.0},
  {'pupil': 'ANY',
   'radius': 30.0,
   'radius_inner': 30.0,
   'radius_outer': 50.0}]}
In [24]:
#The file to use is the stage 3 association file defined above. 

# Instantiate the class. Do not provide a configuration file.
pipeline_stage3 = Tso3Pipeline()

pipeline_stage3.outlier_detection.skip = True
pipeline_stage3.tso_photometry.override_tsophot = 'adjusted_jwst_nircam_tsophot_0001.asdf' #use the modified tso_phot ref file

# Specify that you want results saved to a file
pipeline_stage3.save_results = True
pipeline_stage3.output_dir = '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/303050_radii'

# Execute the pipeline using the run method
result_stage3 = pipeline_stage3.run(level3_asn)
2021-11-08 22:54:29,026 - stpipe.Tso3Pipeline - INFO - Tso3Pipeline instance created.
2021-11-08 22:54:29,034 - stpipe.Tso3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created.
2021-11-08 22:54:29,039 - stpipe.Tso3Pipeline.tso_photometry - INFO - TSOPhotometryStep instance created.
2021-11-08 22:54:29,045 - stpipe.Tso3Pipeline.extract_1d - INFO - Extract1dStep instance created.
2021-11-08 22:54:29,050 - stpipe.Tso3Pipeline.white_light - INFO - WhiteLightStep instance created.
2021-11-08 22:54:29,638 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline running with args ('/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/nrca3_level3_asn.json',).
2021-11-08 22:54:29,649 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/303050_radii', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '', 'min_wavelength': None, 'max_wavelength': None}}}
2021-11-08 22:54:35,274 - stpipe.Tso3Pipeline - INFO - Prefetching reference files for dataset: 'jw01185002001_01101_00001-seg001_nrca3_calints.fits' reftypes = ['gain', 'readnoise']
2021-11-08 22:54:35,285 - stpipe.Tso3Pipeline - INFO - Prefetch for GAIN reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0048.fits'.
2021-11-08 22:54:35,286 - stpipe.Tso3Pipeline - INFO - Prefetch for READNOISE reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0030.fits'.
2021-11-08 22:54:35,288 - stpipe.Tso3Pipeline - INFO - Starting calwebb_tso3...
2021-11-08 22:55:08,777 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 22:55:09,038 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 22:55:09,042 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 22:55:09,043 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 22:55:09,143 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 22:55:26,234 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 22:55:26,490 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 22:55:26,494 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 22:55:26,495 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 22:55:26,595 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 22:55:43,706 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 22:55:43,968 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 22:55:43,972 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 22:55:43,974 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 22:55:44,074 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 22:56:01,202 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 22:56:01,459 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 22:56:01,465 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 22:56:01,466 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 22:56:01,565 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 22:56:18,877 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 22:56:19,162 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 22:56:19,166 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 22:56:19,168 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 22:56:19,267 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 22:56:32,601 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 22:56:33,099 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 22:56:33,104 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 22:56:33,105 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 22:56:33,184 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 22:56:33,811 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg001_nrca3_calints.fits>,).
2021-11-08 22:56:33,814 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_catalog': False}
2021-11-08 22:56:35,085 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 22:56:35,261 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg002_nrca3_calints.fits>,).
2021-11-08 22:56:35,264 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_catalog': False}
2021-11-08 22:56:36,493 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 22:56:36,670 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg003_nrca3_calints.fits>,).
2021-11-08 22:56:36,673 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_catalog': False}
2021-11-08 22:56:37,922 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 22:56:38,099 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg004_nrca3_calints.fits>,).
2021-11-08 22:56:38,102 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_catalog': False}
2021-11-08 22:56:39,365 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 22:56:39,542 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg005_nrca3_calints.fits>,).
2021-11-08 22:56:39,545 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_catalog': False}
2021-11-08 22:56:41,144 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 22:56:41,321 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(167, 256, 2048) from jw01185002001_01101_00001-seg006_nrca3_calints.fits>,).
2021-11-08 22:56:41,324 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_catalog': False}
2021-11-08 22:56:42,588 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 22:56:42,598 - stpipe.Tso3Pipeline - INFO - Writing Level 3 photometry catalog /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/303050_radii/WASP80b_WLP4_nrca3_level3_asn_phot.ecsv
2021-11-08 22:56:42,706 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline done
In [19]:
#Import the stage 3 result file with all the data
with open('/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/303050_radii/WASP80b_WLP4_nrca3_level3_asn_phot.ecsv', 'r') as file:
    reader = csv.reader(file)
    for row in reader:
        print(row)
['# %ECSV 0.9']
['# ---']
['# datatype:']
['# - {name: MJD', ' datatype: float64}']
['# - {name: aperture_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_sum_err', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_sum_err', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_mean', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_mean_err', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_bkg', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_bkg_err', ' unit: Jy', ' datatype: float64}']
['# - {name: net_aperture_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: net_aperture_sum_err', ' unit: Jy', ' datatype: float64}']
['# meta: !!omap']
['# - {instrument: NIRCAM}']
['# - {detector: NRCA3}']
['# - {channel: SHORT}']
['# - {subarray: SUBGRISM256}']
['# - {filter: WLP4}']
['# - {pupil: CLEAR}']
['# - {target_name: UNKNOWN}']
['# - {xcenter: 1055.75}']
['# - {ycenter: 166.5}']
['# - ra_icrs: !numpy.ndarray']
['#     buffer: !!binary |']
['#       N3hKNXpxcnlja0E9']
['#     dtype: float64']
['#     order: C']
['#     shape: !!python/tuple []']
['# - dec_icrs: !numpy.ndarray']
['#     buffer: !!binary |']
['#       OGpMa01hd25BY0E9']
['#     dtype: float64']
['#     order: C']
['#     shape: !!python/tuple []']
['# - {apertures: Photometry measured in a circular aperture of r=30.0 pixels.  Background calculated as the mean in a circular annulus']
['#     with r_inner=30.0 pixels and r_outer=50.0 pixels.}']
['# - {number_of_integrations: 1227}']
['# - __serialized_columns__:']
['#     annulus_mean:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: &id001 !astropy.units.Unit {unit: Jy}']
['#       value: !astropy.table.SerializedColumn {name: annulus_mean}']
['#     annulus_mean_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_mean_err}']
['#     annulus_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_sum}']
['#     annulus_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_sum_err}']
['#     aperture_bkg:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_bkg}']
['#     aperture_bkg_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_bkg_err}']
['#     aperture_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_sum}']
['#     aperture_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_sum_err}']
['#     net_aperture_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: net_aperture_sum}']
['#     net_aperture_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: net_aperture_sum_err}']
['# schema: astropy-2.0']
['MJD aperture_sum aperture_sum_err annulus_sum annulus_sum_err annulus_mean annulus_mean_err aperture_bkg aperture_bkg_err net_aperture_sum net_aperture_sum_err']
['59852.197994600116 0.25316971278556244 6.726409085503515e-05 0.033550671985753656 2.3055280774025847e-05 6.6746941132343375e-06 4.58670237444719e-09 0.01887225299198643 1.2968595435389537e-05 0.23429745979357602 6.850286407239648e-05']
['59852.19819722708 0.253110791472873 6.726144980692256e-05 0.03374854817686472 2.305890442513244e-05 6.7140603306537406e-06 4.587423276929259e-09 0.018983558349486403 1.2970633739136997e-05 0.23412723312338662 6.850065671016594e-05']
['59852.19839985405 0.2531625840393831 6.726064757194351e-05 0.03399166682829585 2.315982651491121e-05 6.762427249570116e-06 4.607501088748578e-09 0.019120312590916417 1.3027402414637555e-05 0.23404227144846665 6.851064096525514e-05']
['59852.19860248102 0.2536107328309757 6.729072787529832e-05 0.03420772777555944 2.3067156167344997e-05 6.805411209277763e-06 4.589064908882069e-09 0.019241846873752185 1.2975275344131559e-05 0.2343688859572235 6.853028402278426e-05']
['59852.19880510798 0.25320868178159117 6.726682258541954e-05 0.03377309564229216 2.305683870761343e-05 6.7189438937326835e-06 4.5870123154865314e-09 0.01899736629878934 1.2969471773032553e-05 0.23421131548280183 6.850571230787837e-05']
['59852.199007734955 0.25357406533819116 6.729119609564568e-05 0.034306849565065724 2.3064119342557207e-05 6.825130862737812e-06 4.588460751786718e-09 0.019297602880349467 1.2973567130188427e-05 0.2342764624578417 6.853042036981931e-05']
['59852.19921036192 0.25349960872788924 6.72853055435422e-05 0.03389872443459127 2.3060295737937885e-05 6.7439369478440194e-06 4.587700069817226e-09 0.019068032494457588 1.297141635259006e-05 0.23443157623343164 6.852422917683987e-05']
['59852.19941298889 0.25334564665643966 6.727480944984302e-05 0.033787678602324955 2.306053649614342e-05 6.721845081450347e-06 4.587747967140351e-09 0.019005569213807784 1.2971551779080672e-05 0.23434007744263188 6.851394852196198e-05']
['59852.19961561586 0.2533456128464151 6.727596084091627e-05 0.03375720561373857 2.3058653277736494e-05 6.7157826729949655e-06 4.587373312742372e-09 0.018988428157727947 1.2970492468726778e-05 0.23435718468868716 6.851487854437018e-05']
['59852.19981824282 0.2530863355349341 6.72622047839888e-05 0.03342143060523092 2.305353552051379e-05 6.64898235753157e-06 4.58635516729295e-09 0.018799554715442392 1.2967613730289005e-05 0.2342867808194917 6.850082625969724e-05']
['59852.200020869794 0.25334346784248785 6.727268710722945e-05 0.03386091985778411 2.3058012526322656e-05 6.736415966256073e-06 4.587245839298865e-09 0.019046767420003562 1.2970132046056494e-05 0.2342967004224843 6.851159577706052e-05']
['59852.20022349676 0.2529975979924145 6.725524782432797e-05 0.03339331954719414 2.3053100403320147e-05 6.64338984022895e-06 4.586268603477709e-09 0.018783742245296706 1.2967368976867582e-05 0.23421385574711778 6.849394876990229e-05']
['59852.20042612372 0.2533380275525039 6.727651827733378e-05 0.033568643758343994 2.305523344372464e-05 6.678269483789183e-06 4.586692958382947e-09 0.018882362114068497 1.296856881209511e-05 0.2344556654384354 6.851506176421701e-05']
['59852.200628750696 0.2535604054781687 6.728978740124192e-05 0.03415030772726045 2.3062366682797702e-05 6.793987853628563e-06 4.5881120712063645e-09 0.019209548096584 1.2972581259073707e-05 0.2343508573815847 6.85288505158784e-05']
['59852.20083137766 0.2531993717842497 6.72679274357854e-05 0.03368605776146117 2.305858714970255e-05 6.701628257519565e-06 4.587360156988023e-09 0.018948407490821908 1.2970455271707684e-05 0.23425096429342782 6.850698337732774e-05']
['59852.20103400463 0.25328840246337503 6.72722350358137e-05 0.03406558839138054 2.3061447757937188e-05 6.777133477277625e-06 4.587929256914013e-09 0.019161893470151552 1.2972064363839667e-05 0.2341265089932235 6.851151772201051e-05']
['59852.2012366316 0.25334996309669444 6.728040872073719e-05 0.033642757009615804 2.305651827067286e-05 6.693013846649832e-06 4.58694856658273e-09 0.018924050817908888 1.2969291527253481e-05 0.23442591227878556 6.851901867619193e-05']
['59852.20143925856 0.25352541575667703 6.728847256659811e-05 0.03429126256714389 2.3064377952316418e-05 6.822029928028783e-06 4.588512200563606e-09 0.019288835194018437 1.2973712598177983e-05 0.2342365805626586 6.852777363176152e-05']
['59852.201641885535 0.2534844035116378 6.728200134712068e-05 0.03405862872557992 2.306031822304894e-05 6.77574889575958e-06 4.587704543087939e-09 0.019157978658138706 1.297142900046503e-05 0.2343264248534991 6.852098711772952e-05']
['59852.2018445125 0.25321690679170655 6.726667135157998e-05 0.03399567683983702 2.3077048164073017e-05 6.763225016018407e-06 4.591032859102461e-09 0.019122568222408324 1.2980839592291071e-05 0.23409433856929823 6.850771687366513e-05']
['59852.202047139464 0.25315139814230125 6.726521387534316e-05 0.03360611829507368 2.3055392443969234e-05 6.685724805989942e-06 4.586724590476546e-09 0.018903441540978942 1.2968658249732692e-05 0.2342479566013223 6.850397867638068e-05']
['59852.20224976644 0.2533245404205836 6.727865133326239e-05 0.03372062944429042 2.3061496009876833e-05 6.7085060752861645e-06 4.587938856332398e-09 0.01896785406241336 1.2972091505555717e-05 0.23435668635817025 6.85178231064823e-05']
['59852.2024523934 0.2532641420120362 6.727127110455096e-05 0.03356301719490645 2.3055159788825745e-05 6.677150114559551e-06 4.586678305206394e-09 0.018879197172134876 1.2968527381214481e-05 0.2343849448399013 6.850990160888644e-05']
['59852.202655020374 0.25363521196780414 6.729145218246426e-05 0.034460482638420345 2.3156989588534303e-05 6.855695191546297e-06 4.606936700178487e-09 0.019384021484111443 1.3025806643550546e-05 0.2342511904836927 6.8540580501919e-05']
['59852.20285764734 0.2534304370264012 6.728344350806099e-05 0.0340841810223486 2.3062062817431955e-05 6.780832363682188e-06 4.588051619112623e-09 0.019172351825071085 1.2972410334805473e-05 0.23425808520133012 6.85225889776284e-05']
['59852.2030602743 0.2532188698466131 6.726972229726663e-05 0.03382726492104277 2.305758859727453e-05 6.729720529328787e-06 4.5871615012944535e-09 0.01902783651808656 1.2969893585966924e-05 0.23419103332852656 6.850863943753866e-05']
['59852.203262901276 0.2532395558870822 6.726549951411681e-05 0.033847111486389164 2.305802139476755e-05 6.7336688780516304e-06 4.587247603619918e-09 0.019039000211093903 1.2970137034556746e-05 0.2342005556759883 6.850453911660766e-05']
['59852.20346552824 0.2532534873137877 6.727073072495302e-05 0.03378056293584354 2.305872733300632e-05 6.72042946458296e-06 4.587388045570191e-09 0.01900156665141199 1.2970534124816056e-05 0.2342519206623757 6.850975089541748e-05']
['59852.203668155205 0.25322749849749615 6.726604531131084e-05 0.03384966549805339 2.3057633991454448e-05 6.7341769825279755e-06 4.587170532179605e-09 0.01904043684265503 1.2969919120193126e-05 0.23418706165484113 6.850503378444298e-05']
['59852.20387078218 0.2533762501266299 6.727705207792884e-05 0.03361485866763339 2.3054853858678058e-05 6.687463647861621e-06 4.5866174423373376e-09 0.01890835800054378 1.2968355295506407e-05 0.23446789212608612 6.851554550149068e-05']
['59852.20407340914 0.2532353316714176 6.727015631635236e-05 0.034199027511853976 2.3201366089264674e-05 6.803680346809103e-06 4.615765124488937e-09 0.01923695297541786 1.305076842521138e-05 0.23399837869599974 6.852442256097438e-05']
['59852.204276036115 0.2534552661378832 6.729941223434029e-05 0.03379361505181584 2.3057812480612624e-05 6.72302610055146e-06 4.58720604146937e-09 0.01900890846664641 1.2970019520344601e-05 0.2344463576712368 6.853781652085067e-05']
['59852.20447866308 0.253546376239314 6.7283713539164e-05 0.03416433744649622 2.306544664362811e-05 6.796778977586768e-06 4.588724809944725e-09 0.019217439813654123 1.297431373704081e-05 0.23432893642565986 6.852321449383011e-05']
['59852.204681290044 0.2532847985081733 6.727685121067612e-05 0.03359788198041207 2.305560098987512e-05 6.684086243250873e-06 4.586766079366276e-09 0.018898808613981785 1.2968775556804755e-05 0.23438598989419152 6.851542781203537e-05']
['59852.20488391702 0.2535580195710655 6.728318540884918e-05 0.03416638473965156 2.306215179918046e-05 6.797186273618807e-06 4.588069321469022e-09 0.019218591416054004 1.2972460387039007e-05 0.2343394281550115 6.852234502156848e-05']
['59852.20508654398 0.2531201304355001 6.72617035495014e-05 0.036294151162280235 2.5864890136548063e-05 7.220491953501697e-06 5.14565639720054e-09 0.020415460028782632 1.4549000701808285e-05 0.23270467040671744 6.88172230317544e-05']
['59852.205289170946 0.25312473117133405 6.726029743770845e-05 0.03359941818358245 2.305358912460206e-05 6.684391861161072e-06 4.5863658314874726e-09 0.018899672728265125 1.2967643882588658e-05 0.23422505844306893 6.849895911088466e-05']
['59852.20549179792 0.25330322860870413 6.727878938354238e-05 0.033583376299164955 2.3055791307424932e-05 6.681200429659131e-06 4.5868039418397875e-09 0.018890649168280284 1.2968882610426522e-05 0.23441257944042385 6.851735121177758e-05']
['59852.20569442488 0.2534823583010731 6.72812926928149e-05 0.03412073112788768 2.3062453412851183e-05 6.788103776141032e-06 4.588129325602272e-09 0.01919291125943682 1.297263004472879e-05 0.23428944704163626 6.852051865458716e-05']
['59852.20589705185 0.2532496299145101 6.726542760624512e-05 0.033880256002179254 2.305929288156878e-05 6.740262769957105e-06 4.587500557881783e-09 0.019057644001225827 1.2970852245882438e-05 0.23419198591328427 6.850460392583491e-05']
['59852.20609967882 0.25309644414611754 6.726380987478145e-05 0.03345263897015565 2.3054237929887093e-05 6.655191064461054e-06 4.586494907197744e-09 0.018817109420712554 1.2968008835561489e-05 0.234279334725405 6.850247712331246e-05']
['59852.206302305785 0.2536436655809945 6.738094425244881e-05 0.03388175160173069 2.330767617005163e-05 6.740560310033977e-06 4.636914843061115e-09 0.01905848527597351 1.311056784565404e-05 0.23458518030502098 6.864458199732235e-05']
['59852.20650493276 0.25326564115375355 6.727045976495301e-05 0.03366120518204501 2.3055587593827665e-05 6.696683993941233e-06 4.586763414307313e-09 0.01893442791490032 1.2968768021528062e-05 0.23433121323885323 6.850915049089698e-05']
['59852.20670755972 0.2534419783858305 6.728433766226803e-05 0.03394811359867815 2.3058909604636836e-05 6.753762609843524e-06 4.587424307358918e-09 0.01909581389925646 1.2970636652608219e-05 0.23434616448657403 6.852313120271202e-05']
['59852.20691018669 0.25310533668290414 6.726422616881843e-05 0.03363384454306326 2.305663333818356e-05 6.691240767766109e-06 4.586971458536627e-09 0.01891903755547308 1.2969356252728253e-05 0.23418629912743105 6.850314097689345e-05']
['59852.20711281366 0.2533457827851494 6.727927920612142e-05 0.03351598096219983 2.3054731315763443e-05 6.667792553384951e-06 4.586593063199085e-09 0.018852739291237403 1.2968286365116938e-05 0.234493043493912 6.851771932677648e-05']
['59852.207315440624 0.25340970797931617 6.727724105779874e-05 0.03596598828907244 2.6468498519148554e-05 7.155206024238872e-06 5.265740469428755e-09 0.020230868412603246 1.4888530417021061e-05 0.23317883956671293 6.890497443819076e-05']
['59852.20751806759 0.2533810259562945 6.727747440479835e-05 0.03400184664770754 2.305985543684058e-05 6.764452460294058e-06 4.587612474697119e-09 0.019126038739335494 1.2971168683222824e-05 0.23425498721695903 6.85164927539123e-05']
['59852.20772069456 0.2533701346062007 6.728152881136101e-05 0.033684531078790755 2.305841326050466e-05 6.701324533652653e-06 4.58732556283128e-09 0.018947548731819797 1.297035745903387e-05 0.23442258587438092 6.852032028390643e-05']
['59852.207923321526 0.25332931160649175 6.727315846403057e-05 0.033998864423329896 2.3060132170823283e-05 6.763859165605168e-06 4.587667529173706e-09 0.019124361238123066 1.2971324346088097e-05 0.2342049503683687 6.851228433659168e-05']
['59852.2081259485 0.2530290555606842 6.725836107271384e-05 0.03335496566780431 2.3052967564207668e-05 6.6357595783643976e-06 4.586242175975976e-09 0.018762168188139926 1.2967294254866814e-05 0.2342668873725443 6.849699157247601e-05']
['59852.20832857546 0.2536053633686734 6.729180843507155e-05 0.034074460082491986 2.3061281742625376e-05 6.778898444145089e-06 4.587896229217133e-09 0.019166883796401742 1.2971970980226773e-05 0.23443847957227165 6.853071948822813e-05']
['59852.20853120243 0.25302530269254764 6.725777424532246e-05 0.033429024373028624 2.3053131994719206e-05 6.650493089633691e-06 4.586274888386859e-09 0.018803826209828598 1.2967386747029553e-05 0.23422147648271904 6.849643286684204e-05']
['59852.2087338294 0.2529550979097104 6.725344223479041e-05 0.03337007517242645 2.3052778786308366e-05 6.638765518799751e-06 4.5862046198062e-09 0.018770667284489877 1.2967188067298456e-05 0.2341844306252205 6.849214158427942e-05']
['59852.208936456365 0.2537123064531166 6.729642527812522e-05 0.03490008019634859 2.339428353864909e-05 6.943150346940554e-06 4.6541448315866995e-09 0.01963129511044608 1.3159284490490113e-05 0.2340810113426705 6.857095320553699e-05']
['59852.20913908333 0.2530763931402704 6.725774248368441e-05 0.033519609448737414 2.305461734863223e-05 6.6685144178454506e-06 4.5865703901587315e-09 0.018854780314914794 1.2968222258605628e-05 0.2342216128253556 6.84965598592382e-05']
['59852.2093417103 0.2532946924149436 6.72753655251552e-05 0.03367705968771108 2.3057078553413557e-05 6.699838147625024e-06 4.587060031292368e-09 0.01894334607433748 1.2969606686295123e-05 0.23435134634060614 6.851412631085965e-05']
['59852.20954433727 0.2534214972313164 6.729418102969705e-05 0.033347683670236265 2.305243519715741e-05 6.634310870978725e-06 4.586136264916491e-09 0.0187580720645079 1.2966994798401044e-05 0.2346634251668085 6.853210747204114e-05']
['59852.20974696424 0.25335943496654 6.72776587848429e-05 0.0338114670611546 2.3058413461966126e-05 6.726577644964443e-06 4.587325602910765e-09 0.01901895022189946 1.2970357572355945e-05 0.23434048474464056 6.851652024967788e-05']
['59852.209949591204 0.2535890591414337 6.729025759561299e-05 0.03408688512458098 2.3061024307764553e-05 6.781370327728325e-06 4.587845014178853e-09 0.0191738728825768 1.297182617311756e-05 0.2344151862588569 6.852916927520375e-05']
['59852.21015221817 0.25337695255571324 6.72802903010091e-05 0.03357370907883582 2.305580757961312e-05 6.679277197282456e-06 4.586807179088769e-09 0.018885211356845146 1.296889176353238e-05 0.2344917411988681 6.851882673077726e-05']
['59852.21035484514 0.2532236346406572 6.727127070719604e-05 0.03387749628813281 2.3058377573835335e-05 6.739713742292091e-06 4.587318463193998e-09 0.019056091662074705 1.2970337385282375e-05 0.23416754297858253 6.851024386505207e-05']
['59852.210557472106 0.2533279864748146 6.727302280029925e-05 0.03388350855258824 2.3060265313723376e-05 6.740909844301162e-06 4.587694017112065e-09 0.019059473560830882 1.2971399238969399e-05 0.2342685129139837 6.851216530592446e-05']
['59852.21076009907 0.2532429078415508 6.726595701254696e-05 0.033791728983778406 2.305862772333052e-05 6.722650879237503e-06 4.5873682288548365e-09 0.019007847553375354 1.2970478094373418e-05 0.23423506028817542 6.850505291444154e-05']
['59852.21096272604 0.2534276932079318 6.728216538404923e-05 0.034079960284983384 2.307092933666762e-05 6.779992674663229e-06 4.589815557068092e-09 0.01916997766030315 1.2977397751875535e-05 0.23425771554762864 6.852227835658222e-05']
['59852.21116535301 0.25328769113783584 6.727339937829858e-05 0.03362001443745559 2.3055987228931015e-05 6.68848935567743e-06 4.5868429191849765e-09 0.018911258121068766 1.2968992816273695e-05 0.23437643301676708 6.851207950851166e-05']
['59852.21136797998 0.25303000583419955 6.72550211313381e-05 0.03351767214960473 2.305870068701328e-05 6.668129004428933e-06 4.5873827445183076e-09 0.01885369058415266 1.2970519136444967e-05 0.2341763152500469 6.849432264097237e-05']
['59852.211570606945 0.25318232287827774 6.726828907711996e-05 0.0335027313260349 2.3053998457519508e-05 6.66515662202268e-06 4.58644726568395e-09 0.01884528637089463 1.2967874132354721e-05 0.2343370365073831 6.85068498390896e-05']
['59852.21177323391 0.2533356896400942 6.727365808476115e-05 0.03386774001616256 2.306153714245056e-05 6.737772793654323e-06 4.587947039397937e-09 0.01905060375909144 1.297211464262844e-05 0.23428508588100275 6.851292455009379e-05']
['59852.21197586088 0.2531116462337134 6.726062303703611e-05 0.033499590443807424 2.305485394324545e-05 6.6645317633574644e-06 4.586617459161486e-09 0.018843519624641675 1.2968355343075565e-05 0.23426812660907173 6.849941351306995e-05']
['59852.21217848785 0.2538001918156268 6.730325703937297e-05 0.034225351623227096 2.3064913304514534e-05 6.80891736236852e-06 4.588618705499388e-09 0.019251760288065238 1.2974013733789425e-05 0.23454843152756155 6.854234778932266e-05']
['59852.21238111481 0.2535674703364169 6.728918303010447e-05 0.03410823766018365 2.306146170064133e-05 6.785618279714213e-06 4.587932030726868e-09 0.0191858836838533 1.2972072206610747e-05 0.23438158665256362 6.852816070924728e-05']
['59852.212583741784 0.25329547657277196 6.727236884993362e-05 0.03388230211117264 2.3058267316995605e-05 6.740669830407608e-06 4.587296528292682e-09 0.01905879493753461 1.2970275365810028e-05 0.23423668163523736 6.851131040745359e-05']
['59852.21278636875 0.2532995816692142 6.72716379626122e-05 0.03330547968052057 2.305143190070915e-05 6.62591465400191e-06 4.585936665430082e-09 0.01873433232029282 1.2966430444148896e-05 0.23456524934892137 6.850986492933495e-05']
['59852.212988995714 0.25314434825548826 6.725975254302597e-05 0.03364763720061208 2.305585840605951e-05 6.693984729800194e-06 4.5868172906889974e-09 0.01892679592534429 1.2968920353408473e-05 0.23421755233014396 6.849866573359032e-05']
['59852.213191622686 0.2532523884340543 6.727116888870525e-05 0.03355774859621487 2.3055502807404885e-05 6.676101960153385e-06 4.5867465465844474e-09 0.018876233585370862 1.2968720329165248e-05 0.23437615484868343 6.850983776530791e-05']
['59852.21339424965 0.2533301732492721 6.727245329076933e-05 0.03402316247148298 2.3060568330505188e-05 6.768693108693978e-06 4.587754300385396e-09 0.019138028890209175 1.2971569685909168e-05 0.2341921443590629 6.851163836805495e-05']
['59852.21359687662 0.25315431296767316 6.726363352899615e-05 0.03377786935678044 2.305808855879628e-05 6.719893594054833e-06 4.5872609654788815e-09 0.019000051513188995 1.2970174814322909e-05 0.23415426145448415 6.850271403555622e-05']
['59852.21379950359 0.2536272387589521 6.729265140096491e-05 0.034111808270083185 2.3063064540812947e-05 6.786328629983417e-06 4.588250905647242e-09 0.01918789215192179 1.2972973804207282e-05 0.2344393466070303 6.853173704128937e-05']
['59852.21400213055 0.2531912577245541 6.72669902801096e-05 0.033560598021885484 2.3055682161939555e-05 6.6766688353789495e-06 4.586782228035395e-09 0.018877836387310585 1.2968821216090998e-05 0.2343134213372435 6.850575381002161e-05']
['59852.214204757525 0.2532383938015173 6.72700426945728e-05 0.03369020508946881 2.305917526852943e-05 6.702453342210863e-06 4.5874771595110524e-09 0.018950740362826204 1.2970786088547804e-05 0.2342876534386911 6.850912301208148e-05']
['59852.21440738449 0.2532951268779244 6.72740253475532e-05 0.033867107110605074 2.3058303501133363e-05 6.737646881094343e-06 4.587303726898164e-09 0.019050247749715355 1.2970295719387516e-05 0.23424487912820902 6.851294080326426e-05']
['59852.214610011455 0.25320537488689826 6.726675289754357e-05 0.033659114063097934 2.3057338903327147e-05 6.696267979044957e-06 4.58711182626197e-09 0.018933251660492586 1.296975313312152e-05 0.23427212322640567 6.850569714785263e-05']
['59852.21481263843 0.25336661863443444 6.727688671210253e-05 0.03398662688760702 2.3059086292214646e-05 6.761424585228219e-06 4.5874594582356575e-09 0.01911747762427895 1.2970736039370738e-05 0.23424914101015548 6.851583378370368e-05']
['59852.21501526539 0.2534130869365006 6.728271794905405e-05 0.034097280542684086 2.306089239069988e-05 6.783438430449094e-06 4.587818770112702e-09 0.019179720305259797 1.2971751969768681e-05 0.2342333666312408 6.852175190242261e-05']
['59852.215217892364 0.25342953556083314 6.7282698337152e-05 0.03402006046202345 2.305969421217624e-05 6.768075983520226e-06 4.587580400069272e-09 0.01913628400988819 1.2971077994349133e-05 0.23429325155094494 6.85216050590154e-05']
['59852.21542051933 0.2533436743562854 6.727654941360482e-05 0.03461389325176465 2.3471152003363566e-05 6.886215263341929e-06 4.669437326745692e-09 0.019470314954117614 1.3202523001892006e-05 0.2338733594021678 6.855976017035575e-05']
['59852.215623146294 0.25335970175128014 6.728528544733512e-05 0.034520898421674266 2.337234049449197e-05 6.867714529728334e-06 4.6497794016565874e-09 0.01941800536219177 1.3146941528151731e-05 0.23394169638908838 6.855765244868007e-05']
['59852.215825773266 0.25333130311999286 6.727587907459134e-05 0.03408961085930057 2.3062293066567603e-05 6.7819125954210485e-06 4.588097425722724e-09 0.019175406108356566 1.2972539849944276e-05 0.2341558970116363 6.851518587450106e-05']
['59852.21602840023 0.25314052066952825 6.726446736835777e-05 0.03376341605674621 2.3059274451468297e-05 6.717018201374285e-06 4.587496891329791e-09 0.01899192153191974 1.2970841878950916e-05 0.2341485991376085 6.850365909495357e-05']
['59852.216231027196 0.2532076165490087 6.727152977034103e-05 0.03328507690964663 2.3050894483100854e-05 6.621855651705212e-06 4.585829749594001e-09 0.01872285576167623 1.2966128146744229e-05 0.23448476078733246 6.85097014791312e-05']
['59852.21643365417 0.2536532823013038 6.732028267917766e-05 0.03394517745669833 2.3060112214443835e-05 6.75317848295639e-06 4.587663558978161e-09 0.019094162319392812 1.2971313120624655e-05 0.23455911998191098 6.85585547111203e-05']
['59852.21663628113 0.25352053868748264 6.728630780668247e-05 0.03390173609081691 2.3059894301075164e-05 6.744536097813025e-06 4.587620206490924e-09 0.019069726551084513 1.297119054435478e-05 0.23445081213639812 6.852517057544313e-05']
['59852.216838908105 0.2534511033158183 6.729544936389875e-05 0.03339884905436019 2.3053558249513278e-05 6.6444899007268736e-06 4.586359689083725e-09 0.018786852593077608 1.2967626515351219e-05 0.23466425072274072 6.853347242428843e-05']
['59852.21704153507 0.2534381123464453 6.728128364670185e-05 0.03400338624152888 2.3059783561584954e-05 6.764758752752831e-06 4.587598175569346e-09 0.019126904760859993 1.2971128253391536e-05 0.23431120758558532 6.85202254616393e-05']
['59852.217244162035 0.2537076487273818 6.729663295451228e-05 0.03416158127665589 2.3063569400758188e-05 6.796230655019157e-06 4.58835134434206e-09 0.019215889468118936 1.297325778792648e-05 0.23449175925926283 6.853570036591399e-05']
['59852.21744678901 0.2534465787996701 6.727907880894946e-05 0.033970720768499434 2.3060903039252008e-05 6.758260163376493e-06 4.587820888574837e-09 0.019108530432280932 1.2971757959579254e-05 0.23433804836738914 6.851817970394966e-05']
['59852.21764941597 0.25346277894709346 6.728545004338903e-05 0.034173171131274216 2.306465018541537e-05 6.7985363833344355e-06 4.5885663596178206e-09 0.019222408761341746 1.2973865729296146e-05 0.23424037018575172 6.85248347645086e-05']
['59852.21785204294 0.25351938541564256 6.728343054351122e-05 0.03410878407083147 2.3062189281582304e-05 6.785726984658661e-06 4.5880767783559375e-09 0.0191861910398427 1.2972481470890045e-05 0.23433319437579986 6.852258971475087e-05']
['59852.21805466991 0.2533156969296192 6.727360695378133e-05 0.03368828828762324 2.3055624021252642e-05 6.702072006600052e-06 4.586770661313249e-09 0.01894966216178807 1.296878851195461e-05 0.23436603476783113 6.851224465772278e-05']
['59852.218257296874 0.25374338575522726 6.73076710358112e-05 0.03423943303063541 2.306919595239257e-05 6.8117187693619255e-06 4.589470711223527e-09 0.01925968107973242 1.2976422723220818e-05 0.23448370467549484 6.854713799245524e-05']
['59852.21845992384 0.25321255982809815 6.726988195604874e-05 0.03350171441188618 2.305417691844798e-05 6.664954313380843e-06 4.586482769357594e-09 0.018844714356685974 1.296797451662699e-05 0.23436784547141218 6.850843292212003e-05']
['59852.21866255081 0.25366473134982315 6.729489650009203e-05 0.034222414098479134 2.306355514611553e-05 6.808332960388404e-06 4.588348508471008e-09 0.019250107930394514 1.2973249769689983e-05 0.23441462341942865 6.853399378808198e-05']
['59852.218865177776 0.2532348123699642 6.726802825373467e-05 0.03363099591128694 2.3055110369708424e-05 6.690674050480797e-06 4.586668473585388e-09 0.018917435200098903 1.2968499582960987e-05 0.2343173771698653 6.850671212792587e-05']
['59852.21906780475 0.2544669443782829 6.748149089310964e-05 0.034145932474610334 2.3064792694042667e-05 6.793117424770386e-06 4.588594710808405e-09 0.019207087016968313 1.2973945890398999e-05 0.23525985736131455 6.871735505040805e-05']
['59852.21927043171 0.25323362357306023 6.726944918225451e-05 0.034065528662486244 2.308538633421053e-05 6.777121594591659e-06 4.592691685344619e-09 0.019161859872648512 1.2985529812993423e-05 0.23407176370041172 6.851133320705461e-05']
['59852.21947305868 0.2532880430055389 6.726750564794886e-05 0.03406309522289341 2.3060180109050225e-05 6.776637477166765e-06 4.5876770661809315e-09 0.019160491062877538 1.297135131134075e-05 0.23412755194266138 6.850673887245732e-05']
['59852.21967568565 0.2534801698246626 6.728893271602262e-05 0.03395828048073531 2.3059421024800087e-05 6.755785246762561e-06 4.5875260511676405e-09 0.019101532770413612 1.2970924326450047e-05 0.234378637054249 6.852769764076358e-05']
['59852.219878312615 0.2532874618532669 6.72703794897757e-05 0.033571273727546175 2.305677828905575e-05 6.6787926995375654e-06 4.587000295596394e-09 0.01888384147174472 1.2969437787593856e-05 0.23440362038152218 6.850919845702987e-05']
['59852.22008093958 0.2533119965051337 6.727204435379821e-05 0.03378864692029112 2.305746611310724e-05 6.722037722188847e-06 4.58713713384361e-09 0.019006113892663754 1.2969824688622822e-05 0.23430588261246993 6.851090646016154e-05']
['59852.22028356655 0.2533116456057227 6.727130932893962e-05 0.03353407863072336 2.3054623391133426e-05 6.671392970139899e-06 4.58657159227615e-09 0.018862919229781887 1.2968225657512551e-05 0.23444872637594083 6.850988202831797e-05']
['59852.22048619352 0.25331064914640034 6.727700993951437e-05 0.03375869198474689 2.3057559486194573e-05 6.716078377111518e-06 4.587155709829111e-09 0.018989264241420122 1.2969877210984446e-05 0.23432138490498022 6.851579220347326e-05']
['59852.22068882049 0.2538537956858302 6.737121557079101e-05 0.03367937312622658 2.3059296861680346e-05 6.7002983915941265e-06 4.5875013496998204e-09 0.018944647383502454 1.2970854484695194e-05 0.23490914830232776 6.860848164439387e-05']
['59852.220891447454 0.2534642358012378 6.731691488596011e-05 0.033892893719540323 2.3058403983490867e-05 6.742776963941371e-06 4.587323717228027e-09 0.01906475271724143 1.2970352240713612e-05 0.23439948308399636 6.855506594710403e-05']
['59852.22109407442 0.2533608407664816 6.727688151101404e-05 0.03373744665167383 2.305800381282547e-05 6.711851752391254e-06 4.5872441058036795e-09 0.01897731374156653 1.2970127144714327e-05 0.23438352702491505 6.851571340938573e-05']
['59852.22129670139 0.25317642623394254 6.726596013921721e-05 0.03375646169337916 2.3057828962388407e-05 6.715634674741881e-06 4.587209320414479e-09 0.018988009702525777 1.2970028791343478e-05 0.23418841653141675 6.85049709167082e-05']
['59852.221499328356 0.2533650384095024 6.727779603029517e-05 0.03401593971390794 2.3059835053857036e-05 6.767256186730451e-06 4.587608419631387e-09 0.019133966089073216 1.2971157217794581e-05 0.2342310723204292 6.851680639275844e-05']
['59852.22170195532 0.25322789094270104 6.727002488205375e-05 0.033640214707252036 2.3055759671006353e-05 6.692508071664798e-06 4.586797647974289e-09 0.01892262077282927 1.2968864814941071e-05 0.23430527016987177 6.850874179417066e-05']
['59852.22190458229 0.2533106058246718 6.727560875243359e-05 0.03386085904144917 2.305919091675755e-05 6.736403867230666e-06 4.587480272627122e-09 0.01904673321081516 1.2970794890676121e-05 0.23426387261385664 6.8514590074717e-05']
['59852.22210720926 0.25330459828070007 6.727560231386458e-05 0.03368861521230725 2.3057734874589552e-05 6.7021370461994005e-06 4.587190602241638e-09 0.01894984605692283 1.2969975866956622e-05 0.23435475222377725 6.851442870434445e-05']
['59852.22230983623 0.25348029400468963 6.728216713230284e-05 0.034037491080030256 2.306053919812385e-05 6.771543694791388e-06 4.5877485046822785e-09 0.019146088732517018 1.2971553298944664e-05 0.2343342052721726 6.852117343570887e-05']
['59852.222512463195 0.25324822738839825 6.72699794622601e-05 0.03385878747420731 2.326449522624332e-05 6.735991742022553e-06 4.628324267243033e-09 0.01904556795424161 1.3086278564761867e-05 0.23420265943415663 6.853102088490613e-05']
['59852.22271509016 0.25305804429450035 6.725908441091396e-05 0.033369605288815066 2.305250605555048e-05 6.638672038425464e-06 4.5861503617458866e-09 0.018770402974958474 1.2967034656247144e-05 0.23428764131954188 6.849765268657578e-05']
['59852.22291771713 0.25314162772835713 6.725836309723597e-05 0.03376890090379153 2.3056100255791385e-05 6.718109377023493e-06 4.586865405164389e-09 0.018995006758382737 1.2969056393882652e-05 0.2341466209699744 6.849732717608288e-05']
['59852.2231203441 0.253155415605379 6.727307250016431e-05 0.0337795449143984 2.305733713881224e-05 6.720226935651499e-06 4.587111475222883e-09 0.0190009940143491 1.2969752140581883e-05 0.23415442159102992 6.851190228128607e-05']
['59852.22332297106 0.2532650787309249 6.726984005583086e-05 0.03354965751944655 2.3054782958846523e-05 6.674492291575118e-06 4.586603337264021e-09 0.018871682354688685 1.2968315414351169e-05 0.2343933963762362 6.850845630886134e-05']
['59852.223525598034 0.25328026828523287 6.727651627459591e-05 0.03364027438965118 2.305619013818994e-05 6.692519945100847e-06 4.586883286699423e-09 0.018922654344178787 1.2969106952731841e-05 0.2343576139410541 6.851516165928068e-05']
['59852.223728225 0.25329761373784787 6.726933735789543e-05 0.03560447523088531 2.4885259948114296e-05 7.083285286485435e-06 4.950765163586441e-09 0.020027517317372984 1.399795872081429e-05 0.2332700964204749 6.871030924773927e-05']
['59852.22393085197 0.25333799522210587 6.727838749774121e-05 0.033667798409924454 2.3056111406906884e-05 6.697995674951163e-06 4.58686762360833e-09 0.018938136605582502 1.2969062666385121e-05 0.23439985861652338 6.851699067195557e-05']
['59852.224133478936 0.25334166605614894 6.727692539317856e-05 0.03365970124123065 2.3055593072569027e-05 6.696384794422828e-06 4.5867645042682745e-09 0.018933581948192238 1.2968771103320077e-05 0.23440808410795672 6.851549981055106e-05']
['59852.2243361059 0.25335493357320726 6.727498666813946e-05 0.033570241001702306 2.3055871739469034e-05 6.678587245258927e-06 4.58681994328654e-09 0.018883260563457543 1.296892785345133e-05 0.23447167300974972 6.851362580440747e-05']
['59852.22453873287 0.2533820174147041 6.727483842423728e-05 0.03390210263059535 2.305885690613712e-05 6.7446090185849975e-06 4.587413823325514e-09 0.019069932729709884 1.297060700970213e-05 0.23431208468499423 6.851379810817211e-05']
['59852.22474135984 0.2532168993298416 6.726959777506252e-05 0.03370978397691392 2.3056197498645202e-05 6.706348438107274e-06 4.5868847510154705e-09 0.018961753487014076 1.2969111092987925e-05 0.23425514584282753 6.850836903153481e-05']
['59852.2249439868 0.2533113444531454 6.727207174397157e-05 0.03378380760666326 2.305733537101001e-05 6.72107497133254e-06 4.587111123529804e-09 0.01900339177874808 1.296975114619313e-05 0.23430795267439733 6.851091943274616e-05']
['59852.225146613775 0.2534656805557985 6.728124584028327e-05 0.034012233725025806 2.306175600383339e-05 6.766518903668406e-06 4.587990580486598e-09 0.019131881470327013 1.297223775215628e-05 0.23433379908547147 6.852039837974604e-05']
['59852.22534924074 0.2533939263346582 6.727839363694022e-05 0.03398167356567873 2.3058930653741305e-05 6.760439153141203e-06 4.587428494945198e-09 0.019114691380694285 1.2970648492729483e-05 0.2342792349539639 6.851729688691042e-05']
['59852.225551867705 0.25322668970487494 6.726821876883613e-05 0.033817851742686804 2.3060364647013393e-05 6.72784783699684e-06 4.587713778842215e-09 0.019022541605261328 1.2971455113945033e-05 0.23420414809961362 6.850745874797202e-05']
['59852.22575449468 0.2533354454975818 6.727439008381099e-05 0.03372471506950461 2.3056917649188947e-05 6.7093188845967396e-06 4.58702802041398e-09 0.018970152226596343 1.2969516177668783e-05 0.23436529327098546 6.851315137279541e-05']
['59852.22595712164 0.2536465904908174 6.732119795001219e-05 0.03394495780865495 2.305915057947711e-05 6.753134785366584e-06 4.587472247780156e-09 0.01909403876736841 1.2970772200955873e-05 0.234552551723449 6.855935111211172e-05']
['59852.226159748614 0.2548482189973701 6.781374214195504e-05 0.034095644457048664 2.306229135432539e-05 6.783112941553846e-06 4.58809708508296e-09 0.019178800007089873 1.2972538886808033e-05 0.2356694189902802 6.904339496624796e-05']
['59852.22636237558 0.2532688078326193 6.7271141670538e-05 0.033785968370538204 2.3056037503564447e-05 6.72150484164698e-06 4.586852921005505e-09 0.01900460720842774 1.2969021095755e-05 0.23426420062419157 6.850986797418115e-05']
['59852.226565002544 0.2534278166660696 6.728429898592277e-05 0.03401692028895743 2.307337424659718e-05 6.767451265938199e-06 4.590301956443972e-09 0.019134517662538552 1.2978773013710913e-05 0.23429329900353107 6.852463381126876e-05']
['59852.226767629516 0.2536521181542193 6.72942028336696e-05 0.03415727820858458 2.3065222712405857e-05 6.795374586826644e-06 4.588680260243557e-09 0.019213468992328824 1.2974187775728292e-05 0.23443864916189047 6.853349023257842e-05']
['59852.22697025648 0.2537099832056531 6.730123505481362e-05 0.034142387775716355 2.306352536551406e-05 6.7924122293319494e-06 4.588342583808594e-09 0.019205093123840448 1.297323301810166e-05 0.23450489008181263 6.854021458126052e-05']
['59852.227172883446 0.25333024354239586 6.727665318578988e-05 0.03448324293313694 2.339826713669272e-05 6.860223208309265e-06 4.654937343236618e-09 0.019396824149889528 1.3161525264389653e-05 0.23393341939250634 6.855197890043889e-05']
['59852.22737551042 0.2533649220093536 6.727914052600223e-05 0.03405375957353768 2.3060928021294945e-05 6.774780208739344e-06 4.5878258585943646e-09 0.019155239760114944 1.2971772011978406e-05 0.2342096822492387 6.851824296527386e-05']
['59852.22757813738 0.2532880391070673 6.727366584850242e-05 0.03346985083086031 2.3054393178038094e-05 6.6586152553497476e-06 4.586525792836041e-09 0.01882679109235892 1.2968096162646427e-05 0.2344612480147084 6.851217143529758e-05']
['59852.227780764355 0.253654093624144 6.729560903730812e-05 0.03413275327789626 2.3061929697541278e-05 6.790495506891605e-06 4.588025135751841e-09 0.019199673718816646 1.2972335454866967e-05 0.23445441990532734 6.853452037371988e-05']
['59852.22798339132 0.25317986102966716 6.727385939594311e-05 0.0334111796014992 2.3054500616467016e-05 6.646942985137124e-06 4.586547167032342e-09 0.018793788525843298 1.2968156596762696e-05 0.23438607250382387 6.851237292302233e-05']
['59852.228186018285 0.25331241698020557 6.727655061183999e-05 0.03427562590030536 2.326581504468636e-05 6.818919112002742e-06 4.628586836779525e-09 0.019280039568921763 1.3087020962636077e-05 0.2340323774112838 6.853761288448806e-05']
['59852.22838864526 0.25361120263960646 6.72896253969751e-05 0.03411901454350377 2.3062338418662373e-05 6.7877622725286155e-06 4.5881064482353015e-09 0.01919194568072087 1.2972565360497583e-05 0.2344192569588856 6.85286884311791e-05']
['59852.22859127222 0.2530802409631796 6.725611255204477e-05 0.033481626868131095 2.3053722603707272e-05 6.660958023526848e-06 4.586392386311715e-09 0.01883341511332374 1.2967718964585339e-05 0.23424682584985587 6.849486411956579e-05']
['59852.22879389919 0.253193671213806 6.726233933112846e-05 0.03353611028714135 2.305569515202014e-05 6.671797155341885e-06 4.586784812329816e-09 0.01886406203651701 1.2968828523011329e-05 0.23432960917728898 6.850118835140849e-05']
['59852.22899652616 0.2532530874355195 6.727742422535114e-05 0.03384957429122197 2.3057683242779614e-05 6.734158837505395e-06 4.587180330419423e-09 0.01904038553881236 1.2969946824063531e-05 0.23421270189670715 6.851621217651265e-05']
['59852.229199153124 0.253455389968666 6.728080708261308e-05 0.03431887305843118 2.3065674814010694e-05 6.827522860740744e-06 4.5887702030000444e-09 0.01930436609536754 1.2974442082881014e-05 0.23415102387329847 6.85203849160951e-05']
['59852.229401780096 0.253199877322424 6.726947829648474e-05 0.033419607863237735 2.3052553703061858e-05 6.648619734533825e-06 4.586159840917089e-09 0.018798529423071225 1.2967061457972295e-05 0.23440134789935277 6.850786373210059e-05']
['59852.22960440706 0.25336860327547994 6.727805333564204e-05 0.03379239229299716 2.3057457477946163e-05 6.722782840413707e-06 4.5871354159328975e-09 0.0190082206648109 1.2969819831344716e-05 0.23436038261066905 6.851680587338436e-05']
['59852.229807034026 0.25344151078098043 6.729098546380418e-05 0.03341515894492989 2.3054261792468972e-05 6.647734650358693e-06 4.58649965450757e-09 0.018796026906523062 1.2968022258263797e-05 0.23464548387445736 6.852916405429683e-05']
['59852.230009661 0.2534940605167889 6.728159266817248e-05 0.034282832880039284 2.3062690519316684e-05 6.820352895064513e-06 4.588176496434801e-09 0.019284093495022095 1.2972763417115635e-05 0.23420996702176683 6.852083845548254e-05']
['59852.23021228796 0.25343795779631606 6.728194358845938e-05 0.03389766145281199 2.3059232960375502e-05 6.743725474338283e-06 4.58748863693915e-09 0.019067434567206745 1.2970818540211219e-05 0.2343705232291093 6.852081484223403e-05']
['59852.23041491493 0.2531626955462277 6.726432258114472e-05 0.03333771693756864 2.3052861739433126e-05 6.632328052515565e-06 4.586221122806013e-09 0.01875246577738236 1.2967234728431131e-05 0.23441022976884537 6.850283402022523e-05']
['59852.2306175419 0.25313480499569685 6.726446159049314e-05 0.03341195231757216 2.3052796984932936e-05 6.647096712115397e-06 4.586208240307523e-09 0.01879422317863434 1.2967198304024776e-05 0.23434058181706252 6.850296362139983e-05']
['59852.230820168865 0.253208634488839 6.726581089566548e-05 0.03367701689296668 2.3060130618079076e-05 6.699829633881136e-06 4.587667220265061e-09 0.018943322002293754 1.2971323472669479e-05 0.23426531248654525 6.850506950645372e-05']
['59852.23102279584 0.25341997447007086 6.728037389019611e-05 0.033896016016611144 2.3060089283020806e-05 6.743398125207149e-06 4.587658996916502e-09 0.019066509009343768 1.2971300221699202e-05 0.2343534654607271 6.851936470988356e-05']
['59852.2312254228 0.2531973446052792 6.726396673102896e-05 0.03368829364358047 2.305528909119746e-05 6.702073072133886e-06 4.586704029095909e-09 0.018949665174514012 1.2968600113798571e-05 0.2342476794307652 6.850274307868691e-05']
['59852.23142804977 0.25309636985984113 6.726437292973829e-05 0.03364252951915129 2.3095311651619152e-05 6.6929685888599156e-06 4.594666264503792e-09 0.018923922854522598 1.2991112804035772e-05 0.23417244700531853 6.850740746458073e-05']
['59852.23163067674 0.2533277263340872 6.728049647598983e-05 0.03363177941499743 2.3055843949675727e-05 6.690829923591367e-06 4.586814414682824e-09 0.018917875920936054 1.2968912221692595e-05 0.23440985041315113 6.851903305118694e-05']
['59852.231833303704 0.25320800038310276 6.726306733608133e-05 0.03463271858005678 2.3679458255899324e-05 6.889960443408204e-06 4.71087853895571e-09 0.019480904201281936 1.331969526894337e-05 0.23372709618182083 6.856919504789102e-05']
['59852.23203593067 0.25333599522192235 6.727383439150799e-05 0.03397638715746605 2.305978465409231e-05 6.759387455643391e-06 4.587598392916779e-09 0.019111717776074653 1.2971128867926926e-05 0.2342242774458477 6.851291103028983e-05']
['59852.23223855764 0.2531836936042337 6.726108408832352e-05 0.03391434678514616 2.3059883369442184e-05 6.747044915735926e-06 4.587618031711643e-09 0.019076820066644715 1.2971184395311229e-05 0.234106873537589 6.850040187731524e-05']
['59852.232441184606 0.2534694230568125 6.72857670025465e-05 0.03359753902073179 2.306027513243556e-05 6.684018013590376e-06 4.587695970482789e-09 0.01889861569916163 1.2971404761995003e-05 0.2345708073576509 6.85246800986366e-05']
['59852.23264381157 0.2536409893901599 6.729195066694813e-05 0.0341822240454617 2.30622779428714e-05 6.800337403387342e-06 4.588094416958963e-09 0.019227501025572205 1.2972531342865162e-05 0.2344134883645877 6.85309652201441e-05']
['59852.23284643854 0.2531288054471129 6.726655344931877e-05 0.03360776959133689 2.3054819606668423e-05 6.686053320943442e-06 4.586610628116532e-09 0.018904370395127 1.2968336028750988e-05 0.23422443505198592 6.850523302861365e-05']
['59852.23304906551 0.25336059536366157 6.727552636630807e-05 0.0339891625299832 2.3062020298964556e-05 6.761929035250822e-06 4.588043160332299e-09 0.01911890392311555 1.2972386418167562e-05 0.23424169144054602 6.851481049558607e-05']
['59852.23325169248 0.25357982516064737 6.728523886232383e-05 0.034081117774443864 2.3060585364236513e-05 6.7802229498747445e-06 4.587757689138571e-09 0.019170628748124672 1.2971579267383038e-05 0.2344091964125227 6.852419454068742e-05']
['59852.233454319445 0.2531256614680127 6.726410687353617e-05 0.033508522225384495 2.3054874299632065e-05 6.6663086848432244e-06 4.586621508935927e-09 0.018848543751778777 1.2968366793543037e-05 0.2342771177162339 6.850283651635432e-05']
['59852.23365694641 0.2531370864608545 6.726358878963835e-05 0.03344922104522091 2.3052966347425842e-05 6.654511089900452e-06 4.586241933904923e-09 0.01881518683793676 1.2967293570427036e-05 0.23432189962291772 6.850212463422723e-05']
['59852.23385957338 0.253364829203397 6.727927501092123e-05 0.033743663983039976 2.3056169108673636e-05 6.713088651165957e-06 4.586879103010085e-09 0.018980810990459986 1.296909512362892e-05 0.234384018212937 6.851786828500216e-05']
['59852.23406220035 0.253314028928312 6.727344786158077e-05 0.03405689787291527 2.30947694222455e-05 6.775404553562901e-06 4.594558391397409e-09 0.019157005053514836 1.2990807800013093e-05 0.23415702387479717 6.851625992771137e-05']
['59852.23426482731 0.25311207032106825 6.726150600314885e-05 0.033403309149778085 2.305349199192256e-05 6.645377208517398e-06 4.586346507554875e-09 0.018789361396750172 1.2967589245456439e-05 0.23432270892431808 6.85001354790668e-05']
['59852.234467454284 0.25323359823875063 6.727028268292761e-05 0.033752346094766544 2.3057054785920497e-05 6.714815902413156e-06 4.587055302899862e-09 0.01898569467830618 1.296959331708028e-05 0.23424790356044445 6.85091328441066e-05']
['59852.23467008125 0.25362240912755396 6.7289140791688e-05 0.03448801493264908 2.312121457504791e-05 6.8611725674477515e-06 4.599819487384064e-09 0.019399508399615108 1.300568319846445e-05 0.23422290072793886 6.853448959423591e-05']
['59852.23487270822 0.25335421686492404 6.727374308691579e-05 0.03374456859221199 2.305713033944035e-05 6.713268617442573e-06 4.587070333795053e-09 0.018981319833119244 1.2969635815935196e-05 0.2343728970318048 6.851253872191819e-05']
['59852.235075335186 0.25329096095495096 6.727357500506105e-05 0.03354828853366133 2.3056133454314698e-05 6.674219940506693e-06 4.58687200980075e-09 0.0188709123001845 1.2969075068052017e-05 0.23442004865476646 6.851226752985441e-05']
['59852.23527796215 0.25321128207374743 6.727046575170096e-05 0.03355855083247636 2.305567029222635e-05 6.676261559986565e-06 4.586779866630983e-09 0.01887668484326795 1.2968814539377322e-05 0.23433459723047947 6.850916517523431e-05']
['59852.23548058912 0.2532545242692828 6.727179790982496e-05 0.033656321530967065 2.305664904900002e-05 6.695712422429494e-06 4.586974584104251e-09 0.018931680861168972 1.2969365090062509e-05 0.23432284340811382 6.851057746698434e-05']
['59852.23568321609 0.25342059325838395 6.728495293582022e-05 0.03406129155298122 2.3061632359029823e-05 6.776278648438976e-06 4.5879659821345045e-09 0.019159476498551934 1.2972168201954276e-05 0.23426111675983202 6.852402527169092e-05']
['59852.23588584305 0.25367863322198064 6.728817514247767e-05 0.03411091880648217 2.3061029500704778e-05 6.786151676822415e-06 4.587846047281486e-09 0.01918739182864622 1.2971829094146438e-05 0.23449124139333444 6.852712502398225e-05']
['59852.236088470025 0.2533676634769081 6.727819064978279e-05 0.033872436335159184 2.305901051034844e-05 6.738707096632634e-06 4.587444381912403e-09 0.019053245438527038 1.2970693412070997e-05 0.23431441803838104 6.851710607358181e-05']
['59852.23629109699 0.2532233621208528 6.727269333607309e-05 0.03352470316117223 2.3055199158085533e-05 6.6695277797363125e-06 4.586686137471771e-09 0.01885764552815938 1.2968549526423113e-05 0.2343657165926934 6.851130231946129e-05']
['59852.23649372396 0.25320952603695657 6.727339286057108e-05 0.033451806604666484 2.3053673648260232e-05 6.655025470608478e-06 4.586382646934981e-09 0.018816641215124896 1.296769142714638e-05 0.23439288482183168 6.85118267740864e-05']
['59852.23669635093 0.25304723145115116 6.725945294920581e-05 0.033496082203456165 2.306949872677277e-05 6.663833821115642e-06 4.58953094627259e-09 0.01884154623944409 1.297659303380968e-05 0.23420568521170707 6.849982465518834e-05']
['59852.23689897789 0.25325539383536944 6.727002552522643e-05 0.03387149724532101 2.3058917410536256e-05 6.738520270645443e-06 4.587425860293265e-09 0.019052717200493067 1.2970641043426642e-05 0.23420267663487637 6.850907869211233e-05']
['59852.237101604864 0.25345533069652415 6.728542464416895e-05 0.034078265287334666 2.306131876874922e-05 6.779655465595326e-06 4.587903595330425e-09 0.01916902422412575 1.2971991807421435e-05 0.2342863064723984 6.852445505801522e-05']
['59852.23730423183 0.25332367911889875 6.727409284771595e-05 0.033748456027118595 2.305675833942887e-05 6.71404199804424e-06 4.586996326744231e-09 0.018983506515254208 1.2969426565928739e-05 0.23434017260364454 6.851284254745327e-05']
['59852.23750685879 0.2535338530611066 6.728162191219833e-05 0.03415624387803287 2.3063533316707825e-05 6.795168813301525e-06 4.588344165648332e-09 0.01921288718139349 1.297323749064815e-05 0.2343209658797131 6.852095692651092e-05']
['59852.237709485766 0.25344561738006854 6.728525725480599e-05 0.033980353183198544 2.3058496833848817e-05 6.760176471393086e-06 4.5873421892198215e-09 0.01911394866554918 1.297040446903996e-05 0.23433166871451935 6.852399022193552e-05']
['59852.23791211273 0.25361769834789516 6.729126246833098e-05 0.03419706805197298 2.3063185097861696e-05 6.803290524651789e-06 4.588274889710033e-09 0.019235850779234797 1.2973041617547202e-05 0.23438184756866037 6.853038605897694e-05']
['59852.238114739695 0.2531808689467895 6.726683640022785e-05 0.033657737209927374 2.3055589827489668e-05 6.695994062809949e-06 4.586763858680249e-09 0.018932477180584144 1.2968769277962937e-05 0.23424839176620535 6.85055928802901e-05']
['59852.23831736667 0.25335100567240965 6.727221639208648e-05 0.033990702194682504 2.3060020858105532e-05 6.76223534181032e-06 4.587645384212132e-09 0.019119769984508907 1.2971261732684362e-05 0.23423123568790075 6.851134744873662e-05']
['59852.23851999363 0.25339404118586906 6.72818761996219e-05 0.03398664546289694 2.3061811847956976e-05 6.761428280664731e-06 4.588001690321988e-09 0.019117488072879527 1.2972269164475799e-05 0.23427655311298953 6.852102328641085e-05']
['59852.238722620605 0.25337492015496144 6.727638364749796e-05 0.03409374373532581 2.3060871986820054e-05 6.782734804981803e-06 4.587814710889786e-09 0.019177730851120765 1.297174049258628e-05 0.23419718930384067 6.851552997746083e-05']
['59852.23892524757 0.2533043747467258 6.727134812194181e-05 0.033797349684405745 2.3058061188988428e-05 6.7237690820981035e-06 4.587255520428617e-09 0.01901100919747823 1.2970159418805989e-05 0.23429336554924757 6.851028618749688e-05']
['59852.239127874534 0.25369421672355663 6.72954721361916e-05 0.0341618929031777 2.3062523022058186e-05 6.796292651145837e-06 4.5881431739139954e-09 0.019216064758037454 1.2972669199907728e-05 0.2344781519655192 6.853444912015545e-05']
['59852.23933050151 0.253354811221587 6.727830856663084e-05 0.03376099284268698 2.3058778859961865e-05 6.716536118254665e-06 4.587398296532287e-09 0.018990558474011425 1.2970563108728549e-05 0.23436425274757555 6.851719719124756e-05']
['59852.23953312847 0.2535097658749848 6.728375421257008e-05 0.03398820285521333 2.3059867355755765e-05 6.761738114021591e-06 4.5876148458899545e-09 0.0191183641060575 1.2971175387612616e-05 0.2343914017689273 6.852266028018578e-05']
['59852.23973575544 0.25333695007710844 6.728124687327269e-05 0.03354803514945699 2.305486110416553e-05 6.674169531320915e-06 4.58661888378127e-09 0.018870769771569557 1.2968359371093109e-05 0.23446618030553887 6.851966524728564e-05']
['59852.23993838241 0.2535814361897406 6.729459617434189e-05 0.03373537796044092 2.3057640235683767e-05 6.711440199346943e-06 4.587171774429558e-09 0.018976150102748016 1.2969922632572119e-05 0.2346052860869926 6.853306915177998e-05']
['59852.24014100937 0.25341808647645464 6.727868361152298e-05 0.03400782844345362 2.3059910768104567e-05 6.765642500746e-06 4.5876234825023336e-09 0.01912940349944266 1.2971199807058819e-05 0.23428868297701197 6.851768598642291e-05']
['59852.240343636346 0.2532187511635734 6.727152616910865e-05 0.03412083889793452 2.3061728708911404e-05 6.788125216310622e-06 4.587985150334404e-09 0.019192971880088165 1.2972222398762664e-05 0.23402577928348522 6.851085160092546e-05']
['59852.24054626331 0.25302028727777937 6.725543112635679e-05 0.03351407586540988 2.3058565816238198e-05 6.667413546420966e-06 4.587355912830142e-09 0.018851667674293058 1.2970443271633986e-05 0.2341686196034863 6.849471085167669e-05']
['59852.240748890275 0.2531038697125302 6.726204527931947e-05 0.03370950854934182 2.3056168466113602e-05 6.706293643532821e-06 4.586878975176828e-09 0.018961598559004773 1.29690947621889e-05 0.2341422711535254 6.850095002339646e-05']
['59852.24095151725 0.25313460105421315 6.726122781290108e-05 0.033552310615107966 2.3047764496467265e-05 6.67502010818638e-06 4.585207058538317e-09 0.01887317472099823 1.2964367529262837e-05 0.23426142633321492 6.849925249470086e-05']
['59852.24115414421 0.25347145094656687 6.729343584912229e-05 0.03346415842237076 2.304928673110249e-05 6.657482786663235e-06 4.585509897496744e-09 0.01882358911258355 1.2965223786245149e-05 0.2346478618339833 6.853104067652377e-05']
['59852.24135677118 0.2530918159596466 6.726114041134571e-05 0.03346293703643641 2.3047340330395912e-05 6.657239799652141e-06 4.585122673379632e-09 0.018822902082995478 1.29641289358477e-05 0.2342689138766511 6.849912151626505e-05']
['59852.24155939815 0.2531475051975829 6.726171362339225e-05 0.03368509721096547 2.3071592738432657e-05 6.701437162070215e-06 4.589947536655794e-09 0.018947867181168077 1.297777091536837e-05 0.2341996380164148 6.850226753536711e-05']
['59852.241762025114 0.25321401245642305 6.726639235465119e-05 0.03364779231530477 2.3049687907015045e-05 6.694015588887805e-06 4.5855897089086595e-09 0.01892688317735893 1.2965449447695963e-05 0.23428712927906412 6.850452846192458e-05']
['59852.24196465209 0.2532213186953187 6.726777173254945e-05 0.03360331040985806 2.3047366177036458e-05 6.685166194975318e-06 4.585127815405389e-09 0.018901862105545158 1.2964143474583009e-05 0.23431945658977357 6.850563575277549e-05']
['59852.24216727905 0.253062980786475 6.725797134916714e-05 0.0336011345163139 2.3047735799278262e-05 6.6847333147088235e-06 4.585201349413963e-09 0.01890063816542657 1.2964351387094021e-05 0.23416234262104843 6.849605183434616e-05']
['59852.24236990602 0.2530995138662701 6.726485618336699e-05 0.03336273919162248 2.304535329006732e-05 6.637306071790527e-06 4.584727364266609e-09 0.018766540795287643 1.2963011225662867e-05 0.23433297307098247 6.850255861941002e-05']
['59852.24257253299 0.2532828843757274 6.727887837329833e-05 0.033369717943528596 2.3045395167618202e-05 6.638694450368616e-06 4.584735695540643e-09 0.018770466343234836 1.2963034781785238e-05 0.23451241803249254 6.851633196488881e-05']
['59852.24277515995 0.2531726504528907 6.726192934167511e-05 0.03386152369219983 2.3051527644075323e-05 6.736536095296162e-06 4.585955712967575e-09 0.019047107076862402 1.2966484299792368e-05 0.2341255433760283 6.850034199813355e-05']
['59852.24297778692 0.25324902554563833 6.726645013094934e-05 0.0336967580497787 2.3052459575237518e-05 6.70375701224237e-06 4.586141114781431e-09 0.01895442640300052 1.2967008511071103e-05 0.2342945991426378 6.850488028560947e-05']
['59852.24318041389 0.2534132763036255 6.727801986082462e-05 0.0341031631478093 2.305527799059293e-05 6.784608737554014e-06 4.586701820700806e-09 0.019183029270642728 1.2968593869708523e-05 0.23423024703298276 6.851654094706586e-05']
['59852.243383040855 0.2533840523955606 6.72822288974177e-05 0.03494318014541654 2.404142976292775e-05 6.95172480936702e-06 4.782890482208206e-09 0.019655538831796802 1.3523304241646857e-05 0.2337285135637638 6.862782295116649e-05']
['59852.24358566783 0.2534811105128033 6.728540768502337e-05 0.03409683577074621 2.3054072767519762e-05 6.783349945883517e-06 4.586462049188777e-09 0.01917947012104474 1.2967915931729865e-05 0.23430164039175858 6.852366694035146e-05']
['59852.24378829479 0.2535994726451193 6.729084054316942e-05 0.034174248612581795 2.305578104703298e-05 6.7987507414296735e-06 4.586801900599666e-09 0.01922301484457726 1.2968876838956049e-05 0.23437645780054203 6.852918347295746e-05']
['59852.24399092176 0.2535111707894755 6.728323113074479e-05 0.03413621665660746 2.305788600307261e-05 6.791184524193713e-06 4.587220668298038e-09 0.019201621869341694 1.297006087672834e-05 0.2343095489201338 6.852193568879431e-05']
['59852.24419354873 0.2531430359503694 6.726356601203841e-05 0.03370768735809354 2.304912337909631e-05 6.705931329045972e-06 4.585477399647684e-09 0.018960574138927617 1.2965131900741672e-05 0.23418246181144178 6.850169310213783e-05']
['59852.244396175694 0.25351389309212835 6.728299398506461e-05 0.03416174963624448 2.3056721346059793e-05 6.796264149095083e-06 4.586988967147293e-09 0.01921598417038752 1.2969405757158632e-05 0.23429790892174082 6.852157882950493e-05']
['59852.24459880266 0.2534908844329469 6.728183126454576e-05 0.03411644138056265 2.3054832280774545e-05 6.787250358026789e-06 4.58661314954983e-09 0.01919049827656649 1.296834315793568e-05 0.23430038615638038 6.852023600785965e-05']
['59852.24480142963 0.25316588902630954 6.726248341662722e-05 0.03352686904479958 2.3047982781303246e-05 6.669958668593131e-06 4.585250484926627e-09 0.018858863837699764 1.2964490314483074e-05 0.23430702518860977 6.850050864399751e-05']
['59852.2450040566 0.253078107241986 6.725603285653449e-05 0.033634762003361594 2.304872848580016e-05 6.6914232906930724e-06 4.585398838122589e-09 0.018919553626890896 1.2964909773262588e-05 0.23415855361509508 6.849425407308329e-05']
['59852.24520668356 0.25308476677221375 6.726016880694998e-05 0.03339382399915802 2.3046994841887258e-05 6.643490197758455e-06 4.585053940624715e-09 0.018784025999526388 1.2963934598561583e-05 0.23430074077268737 6.849813069139323e-05']
['59852.24540931053 0.2531977444713035 6.726391224188592e-05 0.033540970244814054 2.304723828338816e-05 6.6727640132004195e-06 4.585102371772493e-09 0.018866795762707906 1.296407153440584e-05 0.23433094870859558 6.850183239033335e-05']
['59852.2456119375 0.25314806842346327 6.726253413178869e-05 0.03354236356962938 2.3050192543984586e-05 6.673041206365033e-06 4.585690103243871e-09 0.018867579507916524 1.2965733305991329e-05 0.23428048891554676 6.850079370337348e-05']
['59852.24581456447 0.253512142777671 6.728476304994734e-05 0.03408435343979689 2.3054367060559976e-05 6.780866665043651e-06 4.586520596928861e-09 0.01917244880988575 1.2968081471564985e-05 0.23433969396778523 6.852306528272583e-05']
['59852.246017191435 0.25329440786338253 6.727507408827152e-05 0.03381597821278595 2.3052755951026717e-05 6.727475110065901e-06 4.5862000768712606e-09 0.019021487744692096 1.2967175222452528e-05 0.23427292011869044 6.85133799110233e-05']
['59852.2462198184 0.2534030905653898 6.727515776125066e-05 0.034059545532259525 2.3053764421441088e-05 6.775931288653228e-06 4.5864007056855226e-09 0.01915849436189598 1.2967742487060612e-05 0.2342445962034938 6.851356943709677e-05']
['59852.24642244537 0.2530754912960749 6.72650340808383e-05 0.03359493791332049 2.306943435366195e-05 6.6835005397128485e-06 4.589518139649104e-09 0.018897152576242773 1.2976556823934847e-05 0.2341783387198321 6.850529787469833e-05']
['59852.24662507234 0.25306887200945205 6.725666668392154e-05 0.03356659966069957 2.304628052647405e-05 6.677862823483841e-06 4.5849118320885414e-09 0.018881212309143504 1.2963532796141652e-05 0.23418765970030855 6.849461581751344e-05']
['59852.2468276993 0.2532228183305569 6.726994804859222e-05 0.033756423008827044 2.3050087579507677e-05 6.715626978694768e-06 4.5856692212246845e-09 0.01898798794246521 1.2965674263473067e-05 0.23423483038809167 6.850806244207162e-05']
['59852.247030326274 0.25353107508058315 6.728353575725118e-05 0.03405423914658161 2.305260709676719e-05 6.774875616764987e-06 4.586170463257256e-09 0.019155509519952152 1.2967091491931545e-05 0.234375565560631 6.852167281785685e-05']
['59852.24723295324 0.2536378809687585 6.728790063586039e-05 0.03419304540983156 2.3055692351437997e-05 6.8024902454254195e-06 4.586784255171701e-09 0.019233588043030252 1.2968826947683871e-05 0.23440429292572826 6.852628725080902e-05']
['59852.24743558021 0.25326375306726656 6.727249004373155e-05 0.033723890128178426 2.304959426016451e-05 6.7091547677344606e-06 4.5855710784597e-09 0.018969688197100366 1.2965396771342537e-05 0.23429406487016619 6.85105059835519e-05']
['59852.247638207176 0.25344640423633535 6.728243165072094e-05 0.03419567049499516 2.3060872820278668e-05 6.803012489525199e-06 4.587814876701109e-09 0.019235064653434778 1.297174096140675e-05 0.23421133958290058 6.852146869707166e-05']
['59852.24784083414 0.2531448479595314 6.726636705949867e-05 0.03346252440497825 2.304735884346724e-05 6.657157709231841e-06 4.585126356438149e-09 0.018822669977800265 1.2964139349450322e-05 0.23432217798173113 6.850425568134562e-05']
['59852.24804346111 0.25315363027960286 6.726064981923118e-05 0.03384077988664853 2.3060127505840995e-05 6.732409246306128e-06 4.587666601104968e-09 0.019035438686239796 1.297132172203556e-05 0.23411819159336306 6.850000146950214e-05']
['59852.24824608808 0.2534594268885123 6.728014624364918e-05 0.03408251169340739 2.3053869753703244e-05 6.780500261241388e-06 4.586421660873259e-09 0.019171412827541656 1.2967801736458074e-05 0.23428801406097066 6.851847897058797e-05']
['59852.24844871504 0.25336934704613245 6.727012946236438e-05 0.03405210410238507 2.3054862759061336e-05 6.77445086321799e-06 4.5866192130123304e-09 0.019154308557591603 1.2968360301972003e-05 0.23421503848854086 6.850874898000275e-05']
['59852.248651342015 0.25367431389388995 6.735222547697897e-05 0.033848067823602807 2.3051163812288526e-05 6.7338591352951475e-06 4.585883330933422e-09 0.019039538150776577 1.2966279644412296e-05 0.23463477574311337 6.858896911689893e-05']
['59852.24885396898 0.2536193463582399 6.729065556731249e-05 0.03415454695848941 2.305589588020463e-05 6.794831221884811e-06 4.58682474593329e-09 0.01921193266415029 1.2968941432615104e-05 0.23440741369408963 6.852901406383492e-05']
['59852.24905659595 0.25334522293038264 6.72719371810901e-05 0.03352115335757852 2.3046913923884677e-05 6.668821568750132e-06 4.585037842499595e-09 0.018855648763637916 1.296388908218513e-05 0.23448957416674474 6.850967779979505e-05']
['59852.24925922292 0.25333864265288697 6.727576278951576e-05 0.03389074727365533 2.305217251893478e-05 6.742349942100527e-06 4.586084006744523e-09 0.019063545341431124 1.2966847041900814e-05 0.23427509731145585 6.851399405318044e-05']
['59852.24946184988 0.25327278510888207 6.726876459313058e-05 0.033529613636428084 2.304786618551865e-05 6.670504687748687e-06 4.585227288932299e-09 0.018860407670490797 1.296442472935424e-05 0.23441237743839127 6.850666389811367e-05']
['59852.249664476854 0.25361118314836706 6.728315589225136e-05 0.034132932122819065 2.3054766891820375e-05 6.790531086958493e-06 4.586600140830731e-09 0.019199774319085722 1.296830637664896e-05 0.23441140882928133 6.852152973408893e-05']
['59852.24986710382 0.25334633179233257 6.726866741084535e-05 0.03409716206234169 2.3054540527112212e-05 6.783414859533905e-06 4.586555107002923e-09 0.0191796536600672 1.2968179046500618e-05 0.23416667813226538 6.850727905130245e-05']
['59852.250069730784 0.25320732624918163 6.726859334872232e-05 0.03383501570749853 2.3050372541634123e-05 6.731262499300392e-06 4.585725912638457e-09 0.019032196335467922 1.2965834554669194e-05 0.2341751299137137 6.850676256264649e-05']
['59852.250272357756 0.25321352945804465 6.726530306732173e-05 0.03371825091239163 2.305025595265831e-05 6.7080328813999225e-06 4.585702717998694e-09 0.018966516138220292 1.29657689733703e-05 0.23424701331982437 6.850351933885918e-05']
['59852.25047498472 0.2532929341967511 6.727271244269496e-05 0.03364103185603507 2.3049606149494346e-05 6.692670638249875e-06 4.585573443766717e-09 0.018923080419019727 1.296540345909057e-05 0.23436985377773137 6.851072562930948e-05']
['59852.25067761169 0.2534257310329725 6.728045025499143e-05 0.034076308852700826 2.3053969870891265e-05 6.779266245291811e-06 4.586441578554961e-09 0.019167923729644213 1.2967858052376335e-05 0.2342578073033283 6.85187881458871e-05']
['59852.25088023866 0.25333899500781243 6.726989295926108e-05 0.03407564237181136 2.3054761110952007e-05 6.779133653131769e-06 4.5865989907635106e-09 0.019167548834143892 1.2968303124910503e-05 0.23417144617366853 6.8508505929483e-05']
['59852.25108286562 0.25313786574152 6.726007982317986e-05 0.03367871188401618 2.3050283232079596e-05 6.700166841636168e-06 4.585708145067122e-09 0.0189442754347591 1.2965784318044771e-05 0.23419359030676087 6.8498393417675e-05']
['59852.251285492595 0.2532176449698249 6.726306705267791e-05 0.033536313214778256 2.3048263551068146e-05 6.6718375265125136e-06 4.585306342296571e-09 0.018864176183312768 1.2964648247475831e-05 0.23435346878651214 6.850111162246802e-05']
['59852.25148811956 0.25355347526733896 6.728294819557328e-05 0.03421110308334857 2.3059007622289265e-05 6.806082705426634e-06 4.587443807351286e-09 0.01924374548438357 1.297069178753771e-05 0.2343097297829554 6.852177729259142e-05']
['59852.251690746525 0.25343268210626485 6.729248199507904e-05 0.03336095386693735 2.3045363488764618e-05 6.636950892729699e-06 4.584729393232969e-09 0.018765536550152256 1.2963016962430097e-05 0.2346671455561126 6.852968657323837e-05']
['59852.2518933735 0.25333965625668914 6.728545213950294e-05 0.033384142455215114 2.304597190421948e-05 6.641564115789361e-06 4.584850433641837e-09 0.0187785801310585 1.2963359196123455e-05 0.23456107612563065 6.852284838843945e-05']
['59852.25209600046 0.2531887521967444 6.726092547472149e-05 0.033735955359111315 2.3049986208055052e-05 6.711555069162604e-06 4.585649054014968e-09 0.018976474889500116 1.2965617242030967e-05 0.2342122773072443 6.849919215715532e-05']
['59852.25229862743 0.25326269179662864 6.727125576022452e-05 0.033551761602035046 2.305265178093678e-05 6.674910885505909e-06 4.586179352890341e-09 0.018872865901144713 1.2967116626776937e-05 0.23438982589548393 6.850961950828494e-05']
['59852.2525012544 0.2533192005797852 6.727271590555199e-05 0.03352906675070246 2.304798139557567e-05 6.670395888290513e-06 4.585250209244885e-09 0.018860100047270133 1.2964489535011315e-05 0.23445910053251506 6.851055607869875e-05']
['59852.252703881364 0.25357197605628157 6.729278119829485e-05 0.03427758235626161 2.305600500138465e-05 6.819308336548216e-06 4.586846454902285e-09 0.019281140075397156 1.2969002813278863e-05 0.2342908359808844 6.853111290043683e-05']
['59852.252906508336 0.2532772170171499 6.727268912854445e-05 0.033656610215007945 2.3051072393391862e-05 6.695769854294616e-06 4.5858651437218014e-09 0.01893184324594197 1.296622822128292e-05 0.23434537377120793 6.851085882451173e-05']
['59852.2531091353 0.2532609002027529 6.727110226343665e-05 0.03382986417024729 2.3051334982332475e-05 6.73023763352782e-06 4.585917384131676e-09 0.019029298595764098 1.2966375927562016e-05 0.23423160160698878 6.850932859423315e-05']
['59852.253311762266 0.2532422057710909 6.72656213585466e-05 0.03361746255234374 2.3050668195386667e-05 6.687981674265239e-06 4.585784731083659e-09 0.018909822685693353 1.2966000859905001e-05 0.23433238308539756 6.850387576663395e-05']
['59852.25351438924 0.25313672428258843 6.726079764983268e-05 0.03363453215832567 2.3047963488523534e-05 6.691377564476057e-06 4.5852466467500556e-09 0.01891942433905819 1.2964479462294487e-05 0.23421729994353024 6.849885129124424e-05']
['59852.2537170162 0.25330933775925746 6.727404280994598e-05 0.03355964672335188 2.3049154351739312e-05 6.676479580548974e-06 4.585483561459227e-09 0.018877301281885427 1.2965149322853362e-05 0.23443203647737204 6.851198386383458e-05']
['59852.25391964317 0.2533110248574956 6.727178882856226e-05 0.034048312038956405 2.305974499349126e-05 6.773696456169002e-06 4.587590502690899e-09 0.019152175521912975 1.2971106558838832e-05 0.23415884933558265 6.851089823929785e-05']
['59852.25412227014 0.25316080351538833 6.726930493729903e-05 0.03378229218513549 2.3049372923506592e-05 6.720773487798774e-06 4.585527044930706e-09 0.01900253935413871 1.2965272269472456e-05 0.23415826416124963 6.850735487353803e-05']
['59852.254324897105 0.2535333822298464 6.7283354843101e-05 0.03418067549363437 2.305861242450125e-05 6.8000293287898995e-06 4.587365185249459e-09 0.019226629965169332 1.2970469488781952e-05 0.23430675226467707 6.852213450923772e-05']
['59852.25452752408 0.2536010878330326 6.728734662926858e-05 0.03418508995182411 2.305549563992441e-05 6.800907557342361e-06 4.586745120659513e-09 0.019229113097901058 1.296871629745748e-05 0.23437197473513152 6.852572231513712e-05']
['59852.25473015104 0.25323471028310995 6.727085997051182e-05 0.03365539545271447 2.3047300871513147e-05 6.695528185015005e-06 4.585114823284331e-09 0.018931159942151887 1.2964106740226143e-05 0.23430355034095807 6.850866123888414e-05']
['59852.25493277801 0.2533494227506621 6.727867829043773e-05 0.03355534683099233 2.304769688616135e-05 6.675624144144243e-06 4.585193607895329e-09 0.018874882592433185 1.2964329498465759e-05 0.23447454015822888 6.851638046374755e-05']
['59852.25513540498 0.2530674115644057 6.726233667656137e-05 0.03361431124415676 2.3047887824623303e-05 6.687354741421283e-06 4.585231593895386e-09 0.018908050074838173 1.2964436901350606e-05 0.23415936148956754 6.85003544469676e-05']
['59852.255338031944 0.25355501856559315 6.72928246841171e-05 0.03394101197885837 2.3054078882346794e-05 6.752349787470677e-06 4.586463265694962e-09 0.01909181923810783 1.2967919371320071e-05 0.23446319932748533 6.853095057554929e-05']
['59852.25554065891 0.25376196755398406 6.7362259896176e-05 0.03334138403738328 2.3045936178237878e-05 6.633057598843454e-06 4.584843326183626e-09 0.01875452852102809 1.2963339100258804e-05 0.23500743903295596 6.859826688006236e-05']
['59852.25574328588 0.25326391700552175 6.727194103787601e-05 0.033544932561777 2.304899133589703e-05 6.673552291113856e-06 4.58545113048785e-09 0.01886902456599956 1.2965057626442077e-05 0.2343948924395222 6.850990271676373e-05']
['59852.255945912846 0.2532054822424906 6.726715364756252e-05 0.03361046188107014 2.3047691244774654e-05 6.686588934967545e-06 4.5851924855771055e-09 0.018905884808101955 1.2964326325185742e-05 0.23429959743438866 6.850506343994353e-05']
['59852.25614853982 0.2534593882572843 6.728122304654585e-05 0.03415723021241415 2.3062521435697518e-05 6.795365038291928e-06 4.5881428583175686e-09 0.01921344199448296 1.2972668307579853e-05 0.23424594626280135 6.852045751202731e-05']
['59852.25635116678 0.25345030405182956 6.727480058234017e-05 0.034251314658625555 2.3056112642192432e-05 6.814082544145188e-06 4.586867869360582e-09 0.019266364495476872 1.2969063361233243e-05 0.2341839395563527 6.851346873324486e-05']
['59852.25655379375 0.25312328865901196 6.726020032365819e-05 0.0336866100236918 2.304976742573097e-05 6.701738126599423e-06 4.585605528654544e-09 0.018948718138326635 1.296549417697367e-05 0.23417457052068533 6.849845682080558e-05']
['59852.25675642072 0.2536898272915022 6.72942971753002e-05 0.03414543520718117 2.305574800590334e-05 6.793018496558648e-06 4.586795327275782e-09 0.019206807304039408 1.2968858253320628e-05 0.2344830199874628 6.8532574128748e-05']
['59852.256959047685 0.25305043682259964 6.72609467462437e-05 0.033366628125518216 2.304576711157726e-05 6.638079750606607e-06 4.58480969144019e-09 0.018768728320603997 1.296324400026221e-05 0.23428170850199564 6.849876387360114e-05']
['59852.25716167465 0.25324084217073506 6.726879108538856e-05 0.03383390379731509 2.3050642860542934e-05 6.73104129179793e-06 4.585779690876643e-09 0.019031570885989734 1.29659866090554e-05 0.23420927128474534 6.850698550393131e-05']
['59852.25736430162 0.25349523310401667 6.727957726423358e-05 0.034178666617439846 2.3057529861846032e-05 6.799629675569377e-06 4.5871498162522285e-09 0.019225499972309913 1.2969860547288394e-05 0.23426973313170676 6.85183099577776e-05']
['59852.25756692859 0.25314958575016466 6.726146783551743e-05 0.03366649142879469 2.3050192458920343e-05 6.6977356593170005e-06 4.585690086320878e-09 0.01893740142869701 1.2965733258142693e-05 0.23421218432146765 6.849974667332466e-05']
['59852.25776955555 0.25330782621910886 6.726764128148406e-05 0.03416127146163111 2.3058545828486333e-05 6.796169019278359e-06 4.587351936393253e-09 0.0192157151971675 1.2970432028523561e-05 0.23409211102194136 6.850669799794008e-05']
['59852.257972182524 0.2531807525894257 6.726969721917146e-05 0.03389541496508207 2.3076634596485956e-05 6.743278549804768e-06 4.590950582445232e-09 0.019066170917858664 1.298060696052335e-05 0.234114581671567 6.851064385205113e-05']
['59852.25817480949 0.2530955547031605 6.726071387886538e-05 0.033382254583647915 2.304457890003227e-05 6.641188535674557e-06 4.58457330426416e-09 0.018777518203301948 1.296257563126815e-05 0.23431803649985852 6.849840872962627e-05']
['59852.25837743646 0.25348309811757597 6.727997960309508e-05 0.0341079156207435 2.305530372387313e-05 6.7855542120032494e-06 4.586706940174238e-09 0.019185702536668216 1.2968608344678635e-05 0.23429739558090776 6.851846800527986e-05']
['59852.258580063426 0.25364424228496774 6.729034430270355e-05 0.03421314176499218 2.3063408570735823e-05 6.806488288252848e-06 4.5883193482257385e-09 0.0192448922428081 1.2973167321038898e-05 0.23439935004215964 6.852950829180128e-05']
['59852.25878269039 0.25309255124516983 6.726283341447913e-05 0.03352018953343629 2.3051476220178034e-05 6.668629822029497e-06 4.585945482508267e-09 0.01885510661255791 1.2966455373850143e-05 0.23423744463261192 6.850122425114764e-05']
['59852.25898531736 0.25339875484900115 6.728258406764021e-05 0.03373580536373287 2.305150586769849e-05 6.711525228530203e-06 4.585951380695055e-09 0.01897639051709974 1.2966472050580398e-05 0.23442236433190142 6.85206211023919e-05']
['59852.25918794433 0.25318416520373543 6.726827161938255e-05 0.03349455984661826 2.304809776431229e-05 6.663530957845765e-06 4.585273360069454e-09 0.018840689913722772 1.2964554992425663e-05 0.23434347529001265 6.850620448405135e-05']
['59852.25939057129 0.2532840402686902 6.726424876146993e-05 0.03383970360436388 2.3050580649300354e-05 6.732195126748923e-06 4.585767314343177e-09 0.01903483327745468 1.2965951615231448e-05 0.23424920699123555 6.850251865977946e-05']
['59852.259593198265 0.25313661003283594 6.726032678142323e-05 0.033546649095728354 2.304908823857063e-05 6.673893784693036e-06 4.585470408662228e-09 0.0188699901163472 1.2965112134195979e-05 0.23426661991648873 6.849850868008817e-05']
['59852.25979582523 0.25322783851699404 6.727091444894457e-05 0.03403866027847148 2.3176071209541874e-05 6.7717762994306085e-06 4.610732868060439e-09 0.019146746406640207 1.3036540055367304e-05 0.23408109211035383 6.852245841629163e-05']
['59852.2599984522 0.25324911912130516 6.727261935253241e-05 0.033741552655098275 2.3049109645240403e-05 6.712668615817945e-06 4.585474667383865e-09 0.01897962336849278 1.2965124175447725e-05 0.23426949575281236 6.851058136839519e-05']
['59852.26020107917 0.2534265742187013 6.729051108028167e-05 0.03350860441224734 2.305744475173517e-05 6.666325035400073e-06 4.587132884133664e-09 0.018848589981889128 1.2969812672851032e-05 0.23457798423681217 6.852903707345053e-05']
['59852.26040370613 0.25336562477409874 6.728831371579506e-05 0.033421708550198506 2.3047462177092318e-05 6.649037652925943e-06 4.5851469140096725e-09 0.01879971105948666 1.2964197474614428e-05 0.23456591371461208 6.852581687857543e-05']
['59852.260606333104 0.2530302309239322 6.725896932569226e-05 0.03344118339148293 2.3047533242098302e-05 6.652912049496376e-06 4.5851610519434015e-09 0.018810665657709145 1.2964237448680294e-05 0.23421956526622303 6.849701020760087e-05']
['59852.26080896007 0.25317598831270227 6.72625677394855e-05 0.03357020668647358 2.304949914392541e-05 6.678580418461083e-06 4.5855521556851735e-09 0.018883241261141385 1.2965343268458042e-05 0.2342927470515609 6.85007528789124e-05']
['59852.261011587034 0.25310175099983234 6.726269090535903e-05 0.033567151830806975 2.3078247311444827e-05 6.677972674236368e-06 4.59127142189211e-09 0.01888152290482892 1.2981514112687714e-05 0.23422022809500342 6.850393635761217e-05']
['59852.261214214006 0.2532318196044089 6.726934415762033e-05 0.0335918862448055 2.3051471306116493e-05 6.6828934295518e-06 4.5859445048867855e-09 0.01889543601270309 1.2966452609690526e-05 0.23433638359170578 6.850761677854309e-05']
['59852.26141684097 0.25339486757043567 6.727989847621483e-05 0.033895464910677166 2.3053269172619863e-05 6.7432884861652e-06 4.586302179063074e-09 0.019066199012255904 1.2967463909598673e-05 0.23432866855817977 6.851817174455634e-05']
['59852.26161946794 0.2534491633429486 6.727888093649002e-05 0.03402805481565176 2.3068094955594304e-05 6.769666409641189e-06 4.589251674870062e-09 0.019140780833804116 1.2975803412521795e-05 0.23430838250914449 6.851875140621589e-05']
['59852.26182209491 0.2533795104538973 6.728167491355925e-05 0.03385431901402731 2.3056745048295822e-05 6.7351027701154826e-06 4.5869936825573264e-09 0.019043054445390357 1.29694190896664e-05 0.23433645600850692 6.852028612533132e-05']
['59852.26202472187 0.2535119494520219 6.728391699296152e-05 0.034129285440419266 2.306353897698777e-05 6.789805602546226e-06 4.588345291725248e-09 0.019197723060235837 1.2973240674555619e-05 0.23431422639178603 6.852321110044158e-05']
['59852.262227348845 0.2532219581616635 6.726514018222177e-05 0.033859399739674195 2.3050340403503265e-05 6.736113548366978e-06 4.585719518960472e-09 0.019045912353566733 1.2965816476970586e-05 0.23417604580809676 6.85033683890685e-05']
['59852.26242997581 0.25356029282107506 6.729114332572888e-05 0.0341255059698756 2.3055002157148177e-05 6.789053700772106e-06 4.586646945380553e-09 0.01919559710805502 1.2968438713395848e-05 0.23436469571302004 6.852939787235031e-05']
['59852.262632602775 0.25336542343657564 6.727488515999574e-05 0.03366225443899831 2.3050570440705707e-05 6.696892736979597e-06 4.585765283407802e-09 0.01893501812193655 1.2965945872896958e-05 0.2344304053146391 6.851296173476599e-05']
['59852.26283522975 0.2530232504883205 6.725250929885343e-05 0.03353220846890633 2.3047538706290583e-05 6.671020913267947e-06 4.585162139009916e-09 0.01886186726375981 1.2964240522288452e-05 0.23416138322456065 6.849066753443211e-05']
['59852.26303785671 0.2530863619139726 6.725184755489112e-05 0.03371711132714071 2.304963046647345e-05 6.707806168117725e-06 4.585578281475998e-09 0.01896587512151665 1.2965417137391313e-05 0.23412048679245595 6.849024048061794e-05']
['59852.263240483684 0.2535525934942197 6.728535049374819e-05 0.03428516053124445 2.305644405403956e-05 6.820815966558384e-06 4.586933801652668e-09 0.019285402798825006 1.2969249780397252e-05 0.2342671906953947 6.8523863222478e-05']
['59852.26344311065 0.2531717862881775 6.72668460350176e-05 0.033496514080330116 2.3047320698213768e-05 6.663919740289763e-06 4.585118767681092e-09 0.01884178917018569 1.2964117892745244e-05 0.2343299971179918 6.850472194116082e-05']
['59852.263645737614 0.253021057719919 6.725718922598973e-05 0.03335198200668542 2.3046087209525686e-05 6.6351659978449186e-06 4.584873372903647e-09 0.018760489878760545 1.2963424055358198e-05 0.23426056784115845 6.849510833497257e-05']
['59852.263848364586 0.25359211462107684 6.728507473001867e-05 0.03413259752701649 2.305544242345084e-05 6.790464521238596e-06 4.586734533578485e-09 0.019199586108946773 1.2968686363191097e-05 0.23439252851213005 6.8523485808962e-05']
['59852.26405099155 0.2531086762769981 6.725909286199251e-05 0.033438450039967774 2.3046881298260842e-05 6.65236826649032e-06 4.585031351837964e-09 0.018809128147481872 1.2963870730271723e-05 0.23429954812951626 6.849706210436568e-05']
['59852.264253618516 0.25307753037772307 6.725634130305034e-05 0.033795973856610526 2.3053857914504294e-05 6.723495369855038e-06 4.586419305539465e-09 0.019010235294343418 1.2967795076908665e-05 0.23406729508337965 6.849510314342983e-05']
['59852.26445624549 0.25328004761918177 6.72741736512376e-05 0.033855388256322685 2.30512613148836e-05 6.735315489111323e-06 4.585902728458385e-09 0.01904365589418151 1.2966334489622024e-05 0.23423639172500027 6.851233663037361e-05']
['59852.26465887245 0.2533097691725348 6.727715136662404e-05 0.033544446336028155 2.304758336094765e-05 6.673455559574623e-06 4.585171022771671e-09 0.018868751064015837 1.2964265640533052e-05 0.23444101810851894 6.851486904027438e-05']
['59852.26486149942 0.2536122652391025 6.729456055821417e-05 0.0346027312343906 2.3198177820058524e-05 6.883994650541982e-06 4.615130838483854e-09 0.019464036319344714 1.304897502378292e-05 0.2341482289197578 6.854803884790916e-05']
['59852.26506412639 0.25319736994470565 6.726291049845146e-05 0.03365464981014539 2.30483822562397e-05 6.695379844139194e-06 4.5853299579400996e-09 0.01893074051820678 1.296471501913483e-05 0.23426662942649887 6.850097053509586e-05']
['59852.265266753355 0.2533498904247755 6.727452072412294e-05 0.03407364935601709 2.3054317602386156e-05 6.77873715523762e-06 4.586510757537812e-09 0.019166427762759612 1.2968053651342212e-05 0.2341834626620159 6.851300281088647e-05']
['59852.26546938033 0.2534081699527911 6.72917662021774e-05 0.033384630970795165 2.3046204858288576e-05 6.641661302876039e-06 4.58489677838135e-09 0.01877885492107228 1.2963490232787322e-05 0.2346293150317188 6.852907322898857e-05']
['59852.26567200729 0.2532469948230638 6.727036747998135e-05 0.03372737835777084 2.305012526479391e-05 6.709848728962301e-06 4.5856767184741674e-09 0.018971650326246096 1.2965695461446575e-05 0.2342753444968177 6.850847830517555e-05']
['59852.26587463426 0.2532258590747843 6.726657854683008e-05 0.03353968018853126 2.304891824925203e-05 6.672507364657578e-06 4.5854365903618185e-09 0.018866070106048835 1.2965016515204266e-05 0.23435978896873544 6.850462935186482e-05']
['59852.26607726123 0.2535471990230017 6.728367658213092e-05 0.034081581951211345 2.3054673151348566e-05 6.780315294908511e-06 4.58658149175641e-09 0.019170889847556383 1.2968253647633567e-05 0.23437630917544533 6.852203103439182e-05']
['59852.266279888194 0.25352816698792124 6.728506377257541e-05 0.03408903190751888 2.305466891327618e-05 6.781797416623714e-06 4.586580648618699e-09 0.01917508044797937 1.2968251263717852e-05 0.23435308653994188 6.85233927043784e-05']
['59852.26648251516 0.25325547893468403 6.726971327515023e-05 0.03351838971175545 2.3047186429617713e-05 6.66827175888301e-06 4.585092055792637e-09 0.018854094212862438 1.2964042366659964e-05 0.2344013847218216 6.850752308035576e-05']
['59852.26668514213 0.2533361569101003 6.727486237074215e-05 0.03380236609885799 2.3052036266410497e-05 6.724767066043945e-06 4.5860569001660876e-09 0.01901383093060762 1.2966770399855903e-05 0.23432232597949268 6.851309540230158e-05']
['59852.266887769096 0.25343780610119687 6.728521240652114e-05 0.03372977934203183 2.3050908836152848e-05 6.710326389604078e-06 4.585832605042967e-09 0.018973000879892902 1.2966136220335975e-05 0.23446480522130397 6.852313840648992e-05']
['59852.26709039607 0.25323609409864734 6.726789177124385e-05 0.03354562428484696 2.3048396771609363e-05 6.67368990504615e-06 4.585332845681141e-09 0.018869413660226413 1.2964723184030267e-05 0.23436668043842093 6.850586332998299e-05']
['59852.26729302303 0.253336071404233 6.727262728200881e-05 0.03391032957591007 2.3052109448593755e-05 6.746245717351728e-06 4.586071459298853e-09 0.019074560386449415 1.2966811564833988e-05 0.23426151101778356 6.851090850063214e-05']
['59852.26749565 0.25321543377639477 6.726377055350251e-05 0.033880752359031534 2.3052938177539595e-05 6.740361517015328e-06 4.58623632968412e-09 0.019057923201955235 1.2967277724866021e-05 0.23415751057443954 6.850230011224468e-05']
['59852.26769827697 0.25319525799615483 6.72714634813407e-05 0.03341946347015348 2.3046498019058578e-05 6.648591008442441e-06 4.584955100863433e-09 0.018798448201961332 1.296365513572045e-05 0.2343968097941935 6.850916838934221e-05']
['59852.267900903935 0.253347826334818 6.727914496037303e-05 0.03380839896290621 2.3050677532173118e-05 6.725967266211789e-06 4.585786588578304e-09 0.019017224416634743 1.2966006111847378e-05 0.23433060191818325 6.851715596178341e-05']
['59852.2681035309 0.25333147037205 6.727014637754997e-05 0.03394304396064238 2.3052607111000726e-05 6.752754037402174e-06 4.586170466088928e-09 0.019092962227861335 1.2967091499937907e-05 0.23423850814418867 6.850852542293376e-05']
['59852.26830615787 0.25330560687713066 6.726737004906052e-05 0.03402671232739808 2.3053510637168083e-05 6.769399330089169e-06 4.586350216908613e-09 0.01914002568416142 1.2967599733407047e-05 0.23416558119296924 6.850589548471798e-05']
['59852.26850878484 0.2532200020020742 6.726521239964563e-05 0.03385068050574824 2.3050997850097873e-05 6.734378911892866e-06 4.585850313804661e-09 0.019041007784483387 1.2966186290680052e-05 0.23417899421759078 6.850350929765612e-05']
['59852.26871141181 0.2533518213441156 6.727632580950135e-05 0.033687913426215674 2.3050070969680285e-05 6.701997430292566e-06 4.585665916804518e-09 0.018949451302246317 1.2965664920445159e-05 0.23440237004186928 6.851432318322527e-05']
['59852.268914038774 0.2533627771413646 6.727512901833511e-05 0.03524312590627535 2.342050550058542e-05 7.011397122492194e-06 4.659361525161368e-09 0.01982425832227988 1.3174034344079297e-05 0.23353851881908474 6.855288590083292e-05']
['59852.26911666574 0.25316561055942177 6.726146429016032e-05 0.03365083739093251 2.304808067691368e-05 6.6946213874356096e-06 4.5852699606395116e-09 0.018928596032399537 1.2964545380763945e-05 0.23423701452702222 6.849951835879139e-05']
['59852.26931929271 0.25352031205810366 6.728446069871379e-05 0.034299297809394086 2.3056678925269348e-05 6.823628488682608e-06 4.586980527799182e-09 0.01929335501778417 1.2969381895464007e-05 0.23422695704031948 6.852301451532287e-05']
['59852.269521919676 0.2533751498022429 6.727486608446782e-05 0.03394922221714369 2.3055822933925162e-05 6.753983162479517e-06 4.586810233732093e-09 0.019096437497143327 1.2968900400332901e-05 0.23427871230509958 6.8513502204141e-05']
['59852.26972454664 0.2531944690132082 6.72687159648028e-05 0.03386979844073995 2.305143000325185e-05 6.738182304212415e-06 4.585936287942946e-09 0.01905176162291622 1.2966429376829164e-05 0.23414270739029197 6.850699554306563e-05']
['59852.26992717361 0.2532759244320252 6.727063551177649e-05 0.03387858639174923 2.305156234876316e-05 6.739930611515886e-06 4.585962617245847e-09 0.019056704845358943 1.2966503821179278e-05 0.23421921958666625 6.850889448460645e-05']
['59852.27012980058 0.2533616967692467 6.72741715543211e-05 0.03380272867290269 2.3051485029304084e-05 6.724839197858258e-06 4.585947235028211e-09 0.019014034878507762 1.2966460328983545e-05 0.23434766189073894 6.851235838725252e-05']
['59852.27033242755 0.25339266423596407 6.72795630658986e-05 0.03352560426424366 2.3048261790815195e-05 6.669707048496379e-06 4.585305992105373e-09 0.018858152398637057 1.2964647257333547e-05 0.23453451183732701 6.851730938124551e-05']
['59852.270535054515 0.253579111329969 6.730319980348164e-05 0.033859553244749034 2.3051591861540294e-05 6.736144087231291e-06 4.585968488626304e-09 0.019045998700171332 1.2966520422116415e-05 0.2345331126297977 6.854087361308238e-05']
['59852.27073768148 0.2536578680432867 6.729854890900715e-05 0.03418813494919154 2.3057539456529024e-05 6.801513340320772e-06 4.58715172505376e-09 0.01923082590892024 1.2969865944297575e-05 0.23442704213436646 6.853693973231572e-05']
['59852.27094030845 0.25330175823022927 6.726767304046001e-05 0.03381472166033262 2.3052089276170094e-05 6.7272251268981484e-06 4.586067446122677e-09 0.0190207809339371 1.2966800217845677e-05 0.23428097729629216 6.850604166179618e-05']
['59852.27114293542 0.25339891990986285 6.728296949797947e-05 0.03402726226693119 2.305320480636468e-05 6.769508737083038e-06 4.586289373803473e-09 0.01914033502514879 1.2967427703580131e-05 0.23425858488471407 6.852118041681428e-05']
['59852.27134556238 0.25359529187852603 6.72891166971515e-05 0.03431777966888187 2.3057279809250422e-05 6.827305337801372e-06 4.587100069868947e-09 0.019303751063746055 1.296971989270336e-05 0.23429154081477999 6.852765033165851e-05']
['59852.271548189354 0.25348919519877433 6.728426842818729e-05 0.03405124796923217 2.3054095609137032e-05 6.774280540938954e-06 4.586466593384148e-09 0.019153826982693096 1.2967928780139579e-05 0.23433536821608122 6.852255070240113e-05']
['59852.27175081632 0.25326155425498964 6.727132887636074e-05 0.03363262198901622 2.304906641516884e-05 6.69099754836638e-06 4.585466067034392e-09 0.018918349868821623 1.2965099858532474e-05 0.234343204386168 6.850930960922906e-05']
['59852.27195344328 0.253246459342265 6.727529654259199e-05 0.033586161169263065 2.3067120896715166e-05 6.68175446196161e-06 4.589057892013215e-09 0.018892215657710473 1.297525550440228e-05 0.2343542436845545 6.851512811268918e-05']
['59852.272156070256 0.25341249420718753 6.728356035800842e-05 0.03360332057395806 2.3048151297534668e-05 6.685168217058764e-06 4.585284010165655e-09 0.018901867822851408 1.296458510486325e-05 0.23451062638433612 6.852122270793921e-05']
['59852.27235869722 0.253636104333662 6.729288326533758e-05 0.03410467447436259 2.3054940899728447e-05 6.784909406418492e-06 4.586634758604114e-09 0.019183879391828956 1.2968404256097249e-05 0.23445222494183307 6.853109985336521e-05']
['59852.27256132419 0.25317677650002646 6.726502327640247e-05 0.03363312428984774 2.304974780670282e-05 6.6910974779417e-06 4.585601625572908e-09 0.018918632413039354 1.2965483141270335e-05 0.2342581440869871 6.850319050570952e-05']
['59852.27276395116 0.2532047948197328 6.726831033959549e-05 0.03353901018062804 2.304905793751384e-05 6.672374070820443e-06 4.585464380458517e-09 0.018865693226603274 1.2965095089851532e-05 0.2343391015931295 6.850634471808448e-05']
['59852.27296657812 0.2532513115442692 6.727082121266631e-05 0.033882139155292174 2.3053036600239757e-05 6.740637411365256e-06 4.586255910258174e-09 0.019058703274851846 1.2967333087634863e-05 0.23419260826941737 6.850923378663773e-05']
['59852.273169205095 0.25329023480776924 6.727384327123568e-05 0.03395371048326832 2.3055026717920084e-05 6.754876074654074e-06 4.586651831590872e-09 0.019098962146838427 1.2968452528830047e-05 0.23419127266093082 6.85124131050374e-05']
['59852.27337183206 0.25323318727173794 6.726443893148626e-05 0.03356917715408414 2.304800904844862e-05 6.6783755995000175e-06 4.585255710609161e-09 0.018882662149172325 1.2964505089752348e-05 0.2343505251225656 6.850243161370156e-05']
['59852.273574459025 0.2540145520545797 6.745723315189071e-05 0.03377123941267973 2.305020871774047e-05 6.718574608584769e-06 4.585693320910368e-09 0.018996322169632346 1.2965742403729013e-05 0.23501822988494733 6.869198483512033e-05']
['59852.273777086 0.2532097056104522 6.726732376572715e-05 0.03354994836684933 2.304829041059867e-05 6.674550153827415e-06 4.585311685830385e-09 0.01887184595635275 1.2964663355961749e-05 0.23433785965409945 6.85052942664768e-05']
['59852.27397971296 0.25335625700768255 6.727146237735723e-05 0.033895270113065375 2.3053056968522982e-05 6.7432497324116754e-06 4.58625996239937e-09 0.019066089438599273 1.2967344544794176e-05 0.23429016756908327 6.850986552994825e-05']
['59852.274182339934 0.25339602023935986 6.727693441367492e-05 0.03385729225657605 2.3051395372701053e-05 6.735694277926287e-06 4.58592939841377e-09 0.019044726894324026 1.2966409897144343e-05 0.23435129334503585 6.85150617727422e-05']
['59852.2743849669 0.25328090854706187 6.727367021194072e-05 0.033792497155098314 2.3054057034734333e-05 6.722803702065884e-06 4.586458919250565e-09 0.0190082796497428 1.2967907082038062e-05 0.23427262889731906 6.851213993062348e-05']
['59852.27458759386 0.25342962316101314 6.72813315701685e-05 0.03393298713322288 2.3052788971178915e-05 6.750753295157631e-06 4.586206646021816e-09 0.01908730526243787 1.2967193796288138e-05 0.23434231789857526 6.851952782094639e-05']
['59852.274790220836 0.2532884709661393 6.7267036182968e-05 0.0337210331707809 2.3051347702838093e-05 6.708586394119437e-06 4.585919914795861e-09 0.018968081158564257 1.2966383082846428e-05 0.23432038980757508 6.850533736207604e-05']
['59852.2749928478 0.2533781832794685 6.727580525147063e-05 0.0338735145707635 2.3052048168963974e-05 6.73892160479044e-06 4.586059268103864e-09 0.019053851946054468 1.2966777095042234e-05 0.23432433133341402 6.851402250974843e-05']
['59852.275195474765 0.25343999926055133 6.728139284592847e-05 0.033922325998710104 2.3053027065584096e-05 6.7486323298367855e-06 4.586254013398699e-09 0.019081308374274433 1.2967327724391053e-05 0.2343586908862769 6.851961333516059e-05']
['59852.27539810174 0.2533720645022336 6.727611756979477e-05 0.03377221064086951 2.3051032904009785e-05 6.718767828293861e-06 4.585857287558855e-09 0.018996868485489097 1.2966206008505503e-05 0.2343751960167445 6.851422110423392e-05']
['59852.2756007287 0.2531436050908755 6.725900805151704e-05 0.03375605022954396 2.3050711032990578e-05 6.715552816612787e-06 4.585793253354174e-09 0.018987778254118477 1.2966024956057199e-05 0.23415582683675704 6.84973865723002e-05']
['59852.275803355675 0.2531404125204167 6.726332220963623e-05 0.03359120053313111 2.3047146588641956e-05 6.682757011548658e-06 4.58508412968235e-09 0.018895050299886248 1.29640199561111e-05 0.23424536222053044 6.850124325951895e-05']
['59852.27600598264 0.25340984709210496 6.72764595980932e-05 0.03402783677742861 2.3053956070207725e-05 6.769623032314943e-06 4.586438832996207e-09 0.019140658187303594 1.2967850289491844e-05 0.23426918890480136 6.851486814688137e-05']
['59852.276208609605 0.2535340275987581 6.728275288452021e-05 0.03413682362315695 2.305659872581002e-05 6.7913052763520165e-06 4.5869645726237e-09 0.019201963288025786 1.2969336783268136e-05 0.2343320643107323 6.852132903204115e-05']
['59852.27641123658 0.25357193558092495 6.729077394454482e-05 0.034079482807231845 2.305431499590114e-05 6.7798976834827625e-06 4.586510238994094e-09 0.019169709079067912 1.2968052185194392e-05 0.23440222650185705 6.852896201996464e-05']
['59852.27661386354 0.2536323477121185 6.729026255492133e-05 0.03410916221617498 2.305501475040022e-05 6.785802214284444e-06 4.586649450728443e-09 0.019186403746598423 1.2968445797100124e-05 0.2344459439655201 6.852853435688356e-05']
['59852.27681649051 0.2531756428077235 6.726432735462549e-05 0.03346885668241526 2.3047556964599547e-05 6.658417475800752e-06 4.5851657713850715e-09 0.018826231883858582 1.2964250792587245e-05 0.2343494109238649 6.850227392636918e-05']
['59852.27701911748 0.2531616167988011 6.726484040639679e-05 0.03356980456437641 2.3049432637179685e-05 6.6785004188117194e-06 4.5855389245885094e-09 0.01888301506746173 1.2965305858413572e-05 0.23427860173133938 6.850297738711978e-05']
['59852.27722174444 0.2530861740186336 6.725311684672899e-05 0.03358066192977444 2.3047723382100163e-05 6.680660423026784e-06 4.585198879094871e-09 0.018889122335498124 1.2964344402431341e-05 0.23419705168313548 6.849128376213016e-05']
['59852.27742437141 0.2533714055079113 6.727546852585931e-05 0.03401105162082768 2.3052967465534005e-05 6.76628373151043e-06 4.586242156345474e-09 0.019131216536715567 1.2967294199362876e-05 0.23424018897119575 6.851378973773613e-05']
['59852.27762699838 0.25322943242354845 6.727106183336688e-05 0.033350213411624946 2.304638952741375e-05 6.634814147037166e-06 4.5849335171364845e-09 0.01875949504403903 1.2963594109170232e-05 0.2344699373795094 6.850876244989383e-05']
['59852.277829625345 0.253255270967376 6.726900113737636e-05 0.03362576459273209 2.3049228761545855e-05 6.689633312722181e-06 4.585498364819885e-09 0.0189144925834118 1.2965191178369543e-05 0.2343407783839642 6.850704121703121e-05']
['59852.27803225232 0.25324538071604286 6.726996264662727e-05 0.03370020527498885 2.3051020196736383e-05 6.7044428159075515e-06 4.585854759527137e-09 0.018956365467181227 1.2966198860664215e-05 0.23428901524886164 6.850817606222573e-05']
['59852.27823487928 0.25320556522715476 6.726923405570252e-05 0.03364657435404903 2.3061899274438666e-05 6.693773283194873e-06 4.5880190832678855e-09 0.018926198074152578 1.297231834187175e-05 0.23427936715300218 6.850861911908421e-05']
['59852.27843750625 0.25321480471819036 6.726610228295221e-05 0.03362991716150979 2.304906659317204e-05 6.690459440031555e-06 4.585466102447002e-09 0.018916828403349253 1.296509995865927e-05 0.23429797631484112 6.850417748778985e-05']
['59852.27864013322 0.2534843709570598 6.728219641823747e-05 0.03390974479148332 2.3055174759128513e-05 6.746129378186528e-06 4.5866812834535e-09 0.019074231445209366 1.2968535802009787e-05 0.2344101395118504 6.852063102241759e-05']
['59852.278842760184 0.25334426544562694 6.727674508278946e-05 0.033549562557883154 2.3048477594099536e-05 6.674473399572345e-06 4.5853489248046706e-09 0.018871628938809275 1.2964768646680989e-05 0.23447263650681766 6.851456527627245e-05']
['59852.27904538715 0.25322582255092024 6.726980538531173e-05 0.034342227545407805 2.337863963862111e-05 6.8321690882978745e-06 4.651032576563339e-09 0.01931750299429189 1.3150484796724372e-05 0.23390831955662836 6.854313945951552e-05']
['59852.27924801412 0.2534647804386262 6.728067324964205e-05 0.03427918937813419 2.305609240166695e-05 6.819628043391563e-06 4.5868638426359795e-09 0.019282044025200482 1.2969051975937657e-05 0.2341827364134257 6.851923308152005e-05']
['59852.27945064109 0.25331759223805206 6.727573704581154e-05 0.034491477156468796 2.34861796360601e-05 6.861861354991499e-06 4.672426979278971e-09 0.019401455900513696 1.3210976045283806e-05 0.23391613633753836 6.856059132713371e-05']
['59852.27965326806 0.25330664180516993 6.726783111177423e-05 0.0339639611444796 2.305282110358361e-05 6.756915378906244e-06 4.586213038560616e-09 0.019104728143769775 1.2967211870765779e-05 0.23420191366140014 6.850627479423699e-05']
['59852.27985589502 0.253434782999756 6.728393848735288e-05 0.033856915547181336 2.3050868326066033e-05 6.73561933397344e-06 4.585824545817265e-09 0.019044514995289502 1.2966113433412143e-05 0.23439026800446652 6.852188319024804e-05']
['59852.28005852199 0.2531875637276592 6.726395712947799e-05 0.03378983745462935 2.3053154110628827e-05 6.7222745714699095e-06 4.58627928820728e-09 0.01900678356822901 1.2967399187228714e-05 0.2341807801594302 6.850250630741326e-05']
['59852.28026114896 0.25310916380344295 6.725857699531433e-05 0.033758190456329155 2.306538346092162e-05 6.715978601203038e-06 4.588712240144655e-09 0.018988982131685147 1.2974278196768409e-05 0.2341201816717578 6.849852607291464e-05']
['59852.280463775925 0.2539056458331405 6.731993079537342e-05 0.034126788095075244 2.3054804779321634e-05 6.789308771476089e-06 4.586607678309614e-09 0.01919631830347982 1.296832768836842e-05 0.2347093275296607 6.855764439744681e-05']
['59852.28066640289 0.25329261961199456 6.727388674111004e-05 0.03370789245709688 2.3051707395945545e-05 6.705972132196227e-06 4.58599147346592e-09 0.018960689507116994 1.2966585410219367e-05 0.23433193010487757 6.851210239407499e-05']
['59852.28086902986 0.25325844861673924 6.727071041359882e-05 0.033561227524998904 2.304763328133246e-05 6.67679407104419e-06 4.585180954116675e-09 0.018878190482811884 1.2964293720749506e-05 0.23438025813392735 6.850854976736946e-05']
['59852.28107165683 0.25349589720959825 6.728309287674349e-05 0.03468021005005173 2.3455407643653084e-05 6.8994085711636995e-06 4.666305085903517e-09 0.019507618153154098 1.3193666799554859e-05 0.23398827905644415 6.8564476448655e-05']
['59852.2812742838 0.2531546245365104 6.726774348627529e-05 0.03349833499028275 2.3049384295840985e-05 6.664281998814621e-06 4.585529307384748e-09 0.018842813432034044 1.2965278666410553e-05 0.23431181110447635 6.850582285202486e-05']
['59852.281476910764 0.25364125654019704 6.728915700635506e-05 0.03418789897596787 2.3056644359808465e-05 6.8014663949395415e-06 4.586973651219233e-09 0.019230693173981926 1.2969362452392261e-05 0.2344105633662151 6.852762226319708e-05']
['59852.28167953773 0.2531300534501405 6.726576706113895e-05 0.033394412057340436 2.3045551580994506e-05 6.64360718821665e-06 4.584766812993149e-09 0.018784356782253993 1.2963122764309409e-05 0.23434569666788652 6.850347414639613e-05']
['59852.2818821647 0.25327803644132096 6.727356015037394e-05 0.033820590667369574 2.3056959370368772e-05 6.728392728749364e-06 4.587036320578981e-09 0.019024082250395383 1.2969539645832434e-05 0.2342539541909256 6.85123408878342e-05']
['59852.28208479167 0.25333994699337437 6.727282104239868e-05 0.034000167109904084 2.3052825369626993e-05 6.764118326864645e-06 4.586213887262981e-09 0.019125093999321045 1.2967214270415182e-05 0.2342148529940533 6.851117497852053e-05']
['59852.28228741863 0.25355608128472745 6.72799987431542e-05 0.03425482876159794 2.3055479604893796e-05 6.814781652718424e-06 4.586741930591532e-09 0.01926834117839884 1.2968707277752758e-05 0.2342877401063286 6.851850552467464e-05']
['59852.2824900456 0.2532340382995431 6.727113660504788e-05 0.033746729865093486 2.3048973090183793e-05 6.713698589020648e-06 4.585447500618536e-09 0.018982535549115085 1.2965047363228382e-05 0.23425150275042803 6.850911087779324e-05']
['59852.28269267257 0.2532251975032503 6.7269306646571e-05 0.03353070411936472 2.3047405256384858e-05 6.670721632435841e-06 4.5851355899947265e-09 0.018861021067142655 1.296416545671648e-05 0.23436417643610763 6.850714709210655e-05']
['59852.28289529954 0.2532201426972984 6.726548032250679e-05 0.03365403174310326 2.3048719100091597e-05 6.695256883608048e-06 4.585396970895199e-09 0.01893039285549558 1.2964904493801522e-05 0.23428974984180284 6.85035297743915e-05']
['59852.283097926505 0.2531757980856032 6.726887234138657e-05 0.0336896229895427 2.3049496089650956e-05 6.702337537110097e-06 4.585551548056577e-09 0.01895041293161777 1.296534155042866e-05 0.23422538515398544 6.85069432072475e-05']
['59852.28330055347 0.25342761854899887 6.728109210117861e-05 0.03411906625000804 2.3054591982941017e-05 6.787772559210795e-06 4.5865653438148045e-09 0.01919197476562952 1.296820799040432e-05 0.23423564378336936 6.85194846215999e-05']
['59852.28350318044 0.2535471480616943 6.728534054014165e-05 0.034082109838453 2.3054557667019103e-05 6.780420314738392e-06 4.586558516879056e-09 0.019171186784129813 1.2968188687698246e-05 0.2343759612775645 6.85236526277064e-05']
['59852.28370580741 0.2531526106714823 6.726792132953922e-05 0.03343882310900731 2.304620826008495e-05 6.6524424862175166e-06 4.584897455147235e-09 0.01880933799881661 1.2963492146297783e-05 0.2343432726726657 6.850565939120799e-05']
['59852.28390843437 0.2531547621064333 6.681482658326486e-05 0.03359267611548766 2.2872967524883643e-05 6.683050569331138e-06 4.550432305957033e-09 0.01889588031496181 1.2866044232747048e-05 0.23425888179147147 6.804231143597901e-05']
['59852.284111061344 0.25317562190868437 6.681533077722945e-05 0.03385598256875735 2.2873368737942452e-05 6.735433723813471e-06 4.550512124758961e-09 0.01904399019492601 1.286626991509263e-05 0.23413163171375836 6.804284920841132e-05']
['59852.28431368831 0.2531862745078744 6.682048279852333e-05 0.0333456914594733 2.286822689715259e-05 6.633914533240467e-06 4.5494891880360884e-09 0.01875695144595373 1.2863377629648331e-05 0.23442932306192066 6.804736148794228e-05']
['59852.284516315274 0.2534262057903305 6.684661940418653e-05 0.033414497892290916 2.2868961868492226e-05 6.647603138114772e-06 4.549635405938256e-09 0.01879565506441364 1.2863791051026877e-05 0.23463055072591685 6.807310515888522e-05']
['59852.28471894225 0.25303171333403673 6.681076322490091e-05 0.033406875162088026 2.2868344975776273e-05 6.646086644125214e-06 4.549512679031879e-09 0.018791367278674514 1.2863444048874153e-05 0.23424034605536223 6.803782973825876e-05']
['59852.28492156921 0.25342519987492074 6.682979862348677e-05 0.033925739032786006 2.287703944686428e-05 6.749311331391936e-06 4.551242389095912e-09 0.019083228205942125 1.2868334688861157e-05 0.2343419716689786 6.805744648251462e-05']
['59852.28512419618 0.2531850570904662 6.681363170174245e-05 0.03354383636208316 2.287060724722946e-05 6.673334209113994e-06 4.549962743637367e-09 0.018868407953671777 1.286471657656657e-05 0.2343166491367944 6.804088707366675e-05']
['59852.28532682315 0.2532618603623762 6.682546884634694e-05 0.03382674621817585 2.287216554384931e-05 6.729617336672204e-06 4.5502727568996825e-09 0.019027544747723914 1.2865593118415235e-05 0.23423431561465227 6.805267645598298e-05']
['59852.28552945011 0.2536650438871297 6.689848577503636e-05 0.03361365261597524 2.2870612683996293e-05 6.687223711507847e-06 4.549963825247762e-09 0.01890767959648607 1.2864719634747915e-05 0.23475736429064362 6.812421309837942e-05']
['59852.285732077085 0.25341833301813776 6.682996937371398e-05 0.034029515485456574 2.2876701612072516e-05 6.769957000665765e-06 4.551175178999589e-09 0.01914160246056932 1.2868144656790789e-05 0.23427673055756845 6.80575782216767e-05']
['59852.28593470405 0.25328346174958866 6.682623546213041e-05 0.03365951729865792 2.2872165717885006e-05 6.69634820021071e-06 4.550272791522985e-09 0.018933478480495078 1.2865593216310316e-05 0.23434998326909356 6.805342926589127e-05']
['59852.286137331015 0.2531835044737709 6.681718395537394e-05 0.03396278520296603 2.288774237853929e-05 6.756681432775404e-06 4.5533716696979775e-09 0.01910406667666839 1.287435508792835e-05 0.23407943779710252 6.804619820869015e-05']
['59852.28633995799 0.25312941938481015 6.681646194641838e-05 0.033587875006804546 2.2869967430382885e-05 6.682095419107089e-06 4.54983545612011e-09 0.018893179691327557 1.2864356679590373e-05 0.2342362396934826 6.804359822802507e-05']
['59852.28654258495 0.25345581149969343 6.683405130694795e-05 0.03398331732744167 2.2876985505777807e-05 6.7607661691534994e-06 4.551231657857727e-09 0.019115615996685938 1.2868304347000016e-05 0.2343401955030075 6.806161672239921e-05']
['59852.286745211924 0.25337874103826613 6.68292663514077e-05 0.033972862921680225 2.287857987750366e-05 6.758686331210971e-06 4.551548848034346e-09 0.019109735393445123 1.2869201181095808e-05 0.234269005644821 6.805708765519512e-05']
['59852.28694783889 0.2536513106629566 6.684439278876631e-05 0.0341657593953672 2.287797705830661e-05 6.797061865326319e-06 4.551428920965595e-09 0.01921823965989405 1.2868862095297469e-05 0.23443307100306254 6.807187715148348e-05']
['59852.287150465854 0.25331095805648374 6.682878151418456e-05 0.03352960082880229 2.2870807174645004e-05 6.670502139752494e-06 4.550002517932922e-09 0.01886040046620129 1.2864829035737814e-05 0.23445055759028244 6.805578494727233e-05']
['59852.28735309283 0.2530184972872327 6.68085553078441e-05 0.03344381090355919 2.286897265874225e-05 6.65343477641509e-06 4.549637552590292e-09 0.018812143633252044 1.2863797120542516e-05 0.23420635365398065 6.803572839824486e-05']
['59852.28755571979 0.25322237510166035 6.681770755671945e-05 0.03366416579568833 2.287836911962057e-05 6.697272989311132e-06 4.551506919085734e-09 0.018936093260074685 1.286908262978657e-05 0.23428628184158568 6.804571500739454e-05']
['59852.287758346756 0.253122874085364 6.68142360912726e-05 0.03351746391009075 2.2870978275069106e-05 6.668087576493937e-06 4.550036557280747e-09 0.018853573449426047 1.286492527972637e-05 0.23426930063593795 6.804152002206635e-05']
['59852.28796097373 0.25323254476290247 6.681952350211133e-05 0.03371871891961857 2.287233116255785e-05 6.708125988479385e-06 4.550305705694848e-09 0.018966779392285443 1.286568627893879e-05 0.23426576537061702 6.804685594851009e-05']
['59852.28816360069 0.25329676604445206 6.682541625910023e-05 0.033679026675026064 2.2872649535734068e-05 6.7002294673177476e-06 4.550369044025777e-09 0.01894445250470216 1.2865865363850412e-05 0.2343523135397499 6.805267628655572e-05']
['59852.288366227665 0.2531687677158263 6.681891359653979e-05 0.034001291533168464 2.3008904860550035e-05 6.764342023765462e-06 4.577476179609593e-09 0.01912572648740726 1.2942508984059394e-05 0.23404304122841904 6.806082392260844e-05']
['59852.28856885463 0.25328583448861164 6.682258167112372e-05 0.03373907474580169 2.2872622403618174e-05 6.712175651426589e-06 4.550363646262826e-09 0.01897822954451345 1.2865850102035222e-05 0.2343076049440982 6.804988993409203e-05']
['59852.288771481595 0.25315268226416143 6.682189915954419e-05 0.0333966186580684 2.286877449857796e-05 6.644046177483258e-06 4.549598129878203e-09 0.018785597995163474 1.2863685655450103e-05 0.23436708426899797 6.804881054015951e-05']
['59852.28897410857 0.2537183452164088 6.685271803338091e-05 0.03413456715575981 2.287776746278159e-05 6.790856366426791e-06 4.551387223260774e-09 0.019200694025114894 1.2868744197814644e-05 0.2345176511912939 6.808003000645286e-05']
['59852.28917673553 0.25361196420741916 6.68474555164573e-05 0.03428514689714743 2.287835216232611e-05 6.820813254140963e-06 4.551503545539191e-09 0.019285395129645427 1.2869073091308437e-05 0.23432656907777374 6.807492454093633e-05']
['59852.2893793625 0.2534150609280301 6.683734789537424e-05 0.03360989686281755 2.2872738607686877e-05 6.686476528157748e-06 4.550386764327753e-09 0.018905566985334868 1.2865915466823868e-05 0.23450949394269527 6.806440225614814e-05']
['59852.28958198947 0.2533717398141167 6.683292273320054e-05 0.034035101696612065 2.287739185555144e-05 6.771068342063954e-06 4.551312498576599e-09 0.019144744704344286 1.2868532918747684e-05 0.2342269951097724 6.806055172082318e-05']
['59852.289784616434 0.2534195598943087 6.683218368195806e-05 0.0340361150476798 2.2876354693499756e-05 6.771269941853352e-06 4.551106161742458e-09 0.019145314714319888 1.2867949515093612e-05 0.23427424517998882 6.805971569454267e-05']
['59852.289987243406 0.25329531618168694 6.682610962747095e-05 0.03363741510839614 2.2870625179489804e-05 6.691951109169061e-06 4.54996631114721e-09 0.01892104599847283 1.2864726663463013e-05 0.2343742701832141 6.805314188241702e-05']
['59852.29018987037 0.25322042946168066 6.68190884182351e-05 0.03503312308072724 2.391324279300208e-05 6.969618387805635e-06 4.757388494828653e-09 0.01970613173290907 1.3451199071063669e-05 0.23351429772877158 6.815955790271312e-05']
['59852.290392497336 0.2532512618099407 6.682446666265831e-05 0.034044888136514156 2.306567327699186e-05 6.773015292421066e-06 4.588769897219863e-09 0.01915024957678921 1.2974441218307922e-05 0.23410101223315147 6.807235466528288e-05']
['59852.29059512431 0.2534475721474545 6.683206618661772e-05 0.03414877477851649 2.288682890117817e-05 6.7936828831659275e-06 4.553189939151196e-09 0.019208685812915523 1.2873841256912719e-05 0.234238886334539 6.8060714509037e-05']
['59852.29079775127 0.25348024230944377 6.683997401087995e-05 0.03410537287888674 2.2877330243414424e-05 6.7850483495838626e-06 4.5513002412313986e-09 0.01918427224437379 1.2868498261920614e-05 0.23429597006506997 6.806746927345074e-05']
['59852.29100037824 0.2534861950132242 6.683890346915706e-05 0.03408286910660936 2.287585172583213e-05 6.780571366338663e-06 4.55100609950431e-09 0.019171613872467765 1.2867666595780572e-05 0.23431458114075646 6.806626080944554e-05']
['59852.29120300521 0.25358986445889065 6.684289483210697e-05 0.03426726288790488 2.287838686457862e-05 6.817255343549398e-06 4.55151044933297e-09 0.019275335374446492 1.2869092611325474e-05 0.23431452908444417 6.807044978678329e-05']
['59852.291405632175 0.25351314389001633 6.684214426270975e-05 0.03390654379391103 2.2875860640959968e-05 6.745492559953459e-06 4.55100787311264e-09 0.019072430884074953 1.2867671610539982e-05 0.23444071300594138 6.806944411638455e-05']
['59852.29160825914 0.25333365483787407 6.683965382473462e-05 0.03336873802462745 2.2867862106301762e-05 6.6384995016974315e-06 4.5494166152022085e-09 0.018769915138852938 1.286317243479474e-05 0.23456373969902114 6.806614818320209e-05']
['59852.29181088611 0.2529471317004343 6.680760379029763e-05 0.03338937767020196 2.2869318686017866e-05 6.6426056287184925e-06 4.5497063925294904e-09 0.018781524939488602 1.286399176088505e-05 0.23416560676094572 6.803483084586533e-05']
['59852.29201351308 0.2535762469489836 6.68405402417814e-05 0.034108144238722014 2.287696221845067e-05 6.78559969410495e-06 4.551227024991195e-09 0.019185831134281132 1.2868291247878502e-05 0.2343904158147025 6.80679861568816e-05']
['59852.29221614005 0.253217546719818 6.681800422592124e-05 0.03364739410034823 2.2871959044090404e-05 6.6939363665393715e-06 4.550231675077962e-09 0.018926659181445878 1.2865476962300853e-05 0.23429088753837213 6.804532449920952e-05']
['59852.292418767014 0.2531919660077455 6.6822347238594e-05 0.03343389138471896 2.2868472869370287e-05 6.651461350844445e-06 4.549538122653976e-09 0.018806563903904415 1.2863515989020786e-05 0.2343854021038411 6.80492184677754e-05']
['59852.29262139398 0.253254960860183 6.682362473338148e-05 0.03365222928572742 2.2872015328162825e-05 6.694898296106701e-06 4.550242872438391e-09 0.018929378973221674 1.2865508622091589e-05 0.23432558188696134 6.805084962447498e-05']
['59852.29282402095 0.2530154828058402 6.680751859705812e-05 0.033437035845363894 2.2869650666360046e-05 6.652086921413193e-06 4.549772437920074e-09 0.018808332663017187 1.2864178499827525e-05 0.234207150142823 6.803478249815818e-05']
['59852.293026647916 0.2532994837431526 6.682929655299228e-05 0.03372562420133163 2.2871603011473987e-05 6.709499750626979e-06 4.550160844639455e-09 0.01897066361324904 1.2865276693954117e-05 0.23432882012990355 6.805637532354911e-05']
['59852.29322927488 0.25345974619199446 6.683201063929385e-05 0.03416501662622288 2.288011270568791e-05 6.7969140961002e-06 4.551853794512388e-09 0.019217821852250367 1.2870063396949449e-05 0.23424192433974408 6.80599454740612e-05']
['59852.29343190185 0.2528432427203068 6.679704834836514e-05 0.03338406079680981 2.2869450106462634e-05 6.6415478703658e-06 4.5497325377962505e-09 0.018778534198205517 1.2864065684885232e-05 0.23406470852210126 6.80244798142468e-05']
['59852.29363452882 0.2533826038856698 6.682485367067805e-05 0.03415696571120291 2.28774034985396e-05 6.795312417447899e-06 4.551314814875497e-09 0.019213293212551635 1.2868539467928524e-05 0.23416931067311816 6.805262945798029e-05']
['59852.29383715579 0.25350859104548806 6.68322823606945e-05 0.03416312880434702 2.287807176263749e-05 6.796538525871175e-06 4.551447761793584e-09 0.019216759952445196 1.2868915366483586e-05 0.23429183109304286 6.805999521194014e-05']
['59852.294039782755 0.25307148256562473 6.681908395311219e-05 0.03345395787648279 2.2876636929439948e-05 6.6554534525378526e-06 4.551162310798707e-09 0.018817851305521566 1.286810827280997e-05 0.23425363126010315 6.804688230076243e-05']
['59852.29424240972 0.25286653929649594 6.679464391776923e-05 0.03347579115737695 2.286857782132058e-05 6.659797045760627e-06 4.549559002181071e-09 0.018830132526024532 1.2863575024492827e-05 0.2340364067704714 6.802202598065087e-05']
['59852.29444503669 0.25257870190336795 6.677810954562035e-05 0.03329322092346049 2.2866045062139124e-05 6.623475851774066e-06 4.549055125751833e-09 0.018727436769446524 1.2862150347453256e-05 0.23385126513392143 6.800552055566786e-05']
['59852.29464766366 0.25257446816226525 6.677304755107491e-05 0.033671190538802 2.287213847299605e-05 6.698670517549246e-06 4.550267371324545e-09 0.018940044678076123 1.2865577891060278e-05 0.23363442348418914 6.800119832568431e-05']
['59852.29485029062 0.25279269491020306 6.678543374960522e-05 0.03396622105291906 2.2900715129803175e-05 6.757364973405088e-06 4.555952516559413e-09 0.01910599934226697 1.2881652260514284e-05 0.2336866955679361 6.80164033603933e-05']
['59852.295052917594 0.25278863157466636 6.679067601666524e-05 0.033496150566810726 2.2867208389564797e-05 6.663847421572899e-06 4.549286562389621e-09 0.018841584693831032 1.2862804719130197e-05 0.2339470468808353 6.801798400427361e-05']
['59852.29525554456 0.25233410291671554 6.675424546544425e-05 0.033280457448262996 2.2864045892017264e-05 6.620936639063177e-06 4.548657403493114e-09 0.018720257314647933 1.2861025814259712e-05 0.2336138456020676 6.798187458915678e-05']
['59852.29545817153 0.2526321892252457 6.676808594901076e-05 0.03402313508628485 2.2874711830574328e-05 6.768687660581916e-06 4.550779324548202e-09 0.019138013486035225 1.2867025404698057e-05 0.2334941757392105 6.799660023897985e-05']
['59852.295660798496 0.2522798158103683 6.675278335329608e-05 0.03343658583021553 2.2869538964554763e-05 6.651997393744034e-06 4.5497502155519956e-09 0.018808079529496237 1.2864115667562053e-05 0.23347173628087206 6.798102350892121e-05']
['59852.29586342546 0.2521696863432339 6.674164022635474e-05 0.033741716412924457 2.2870421225907795e-05 6.712701194402328e-06 4.5499257358712875e-09 0.018979715482270003 1.2864611939573134e-05 0.23318997086096388 6.797017566889157e-05']
['59852.29606605243 0.2522108066010176 6.674340845039614e-05 0.03388021061826388 2.2889625265532246e-05 6.740253741114019e-06 4.553746258163243e-09 0.01905761847277343 1.2875414211861887e-05 0.23315318812824415 6.797395723880894e-05']
['59852.2962686794 0.25180685236641454 6.671255561323327e-05 0.03314551509849198 2.2862307925626118e-05 6.594090711565061e-06 4.548311646065516e-09 0.018644352242901736 1.2860048208164691e-05 0.2331625001235128 6.794075298644447e-05']
['59852.29647130636 0.25177133180820066 6.671498572380087e-05 0.03324133586617341 2.286311583137635e-05 6.61315364759926e-06 4.548472373807642e-09 0.01869825142472254 1.2860502655149195e-05 0.23307308038347813 6.794322518595988e-05']
['59852.296673933335 0.25189844975647063 6.672232775663145e-05 0.033511949680750705 2.286633432088586e-05 6.666990555422923e-06 4.549112671951053e-09 0.01885047169542227 1.2862313055498294e-05 0.23304797806104838 6.795077717289915e-05']
['59852.2968765603 0.25179425605179073 6.67072148403234e-05 0.03389862357614279 2.287148647178219e-05 6.743916882693234e-06 4.5501376598044356e-09 0.019067975761580317 1.2865211140377481e-05 0.23272628029021042 6.793648629006034e-05']
['59852.297079187265 0.2515920599417133 6.669460405084384e-05 0.033823235685595227 2.290022214171192e-05 6.72891893840584e-06 4.555854439694902e-09 0.019025570073147313 1.2881374954712953e-05 0.23256648986856598 6.792716709993685e-05']
['59852.29728181424 0.25170959364128437 6.670224031323426e-05 0.03386624892651435 2.2870497304014923e-05 6.737476150794192e-06 4.549940871129801e-09 0.019049765021164324 1.2864654733508394e-05 0.23265982862012005 6.793149640790224e-05']
['59852.2974844412 0.2516536079264407 6.669257667252687e-05 0.03393145323285384 2.286960101370682e-05 6.750448135375201e-06 4.549762559838576e-09 0.019086442443480286 1.2864150570210086e-05 0.23256716548296041 6.792191217209593e-05']
['59852.297687068174 0.25138277991701957 6.667782103266775e-05 0.03366673727439484 2.2865909652825615e-05 6.6977845687451285e-06 4.549028186924851e-09 0.0189375397168471 1.2862074179714407e-05 0.2324452402001725 6.790703034199733e-05']
['59852.29788969514 0.2518568639643533 6.692456820047292e-05 0.033128457199071086 2.2859766986023672e-05 6.5906971503005615e-06 4.547806142193231e-09 0.018634757174477486 1.2858618929638314e-05 0.23322210678987582 6.814867503919209e-05']
['59852.298092322104 0.25082542849611866 6.663978105962939e-05 0.03336876362378613 2.2863076307748685e-05 6.638504594488236e-06 4.548464510831753e-09 0.018769929538379696 1.2860480423108634e-05 0.23205549895773897 6.786937730956799e-05']
['59852.298294949076 0.25080526717041274 6.663769575640268e-05 0.03319023258564323 2.2860658684875606e-05 6.602986972968523e-06 4.547983540043275e-09 0.018669505829424313 1.2859120510242529e-05 0.23213576134098843 6.786707210437052e-05']
['59852.29849757604 0.2508429449279016 6.663597543009783e-05 0.03388988347454242 2.287905779169873e-05 6.742178094727204e-06 4.551643926042495e-09 0.019063059454430112 1.2869470007830536e-05 0.2317798854734715 6.786734472338705e-05']
['59852.298700203006 0.250295517854358 6.66064213086161e-05 0.03306143031277717 2.2857263394215054e-05 6.577362574958392e-06 4.547308068428449e-09 0.018597054550937155 1.2857210659245967e-05 0.23169846330342084 6.78360024284826e-05']
['59852.29890282998 0.25046970165423793 6.661560652569635e-05 0.03316852307578301 2.285911925712439e-05 6.598668003210578e-06 4.5476772806231015e-09 0.018657294230127942 1.285825458213247e-05 0.23181240742411 6.784521901862599e-05']
['59852.29910545694 0.2503430177847533 6.660397252866998e-05 0.03346163875350399 2.2862482436833198e-05 6.656981514469359e-06 4.5483463639670555e-09 0.018822171798845995 1.2860146370718674e-05 0.23152084598590733 6.783415453351014e-05']
['59852.299308083915 0.2504178832557873 6.660211821796067e-05 0.03370476074929322 2.286444433263077e-05 6.705349098724637e-06 4.548736670734574e-09 0.018958927921477433 1.2861249937104807e-05 0.23145895533430985 6.783254308268184e-05']
['59852.29951071088 0.2502543639513788 6.659293629540413e-05 0.033739412917398216 2.2866045383608043e-05 6.712242928528089e-06 4.549055189706043e-09 0.018978419766036494 1.2862150528279523e-05 0.2312759441853423 6.782369851796548e-05']
['59852.299713337845 0.24989165189864607 6.657515718115987e-05 0.03330566690401225 2.2858098053787024e-05 6.625951900932115e-06 4.547474118674297e-09 0.018734437633506892 1.28576801552552e-05 0.2311572142651392 6.780539427413564e-05']
['59852.29991596482 0.249599114740077 6.655160441594792e-05 0.033603469935767016 2.3026628375795793e-05 6.685197931646519e-06 4.581002160935002e-09 0.018901951838868947 1.2952478461385133e-05 0.23069716290120806 6.78003152546466e-05']
['59852.30011859178 0.24957162079498169 6.654587460787781e-05 0.033224687123683934 2.285786787587186e-05 6.60984148551993e-06 4.5474283262330605e-09 0.018688886507072212 1.2857550680177921e-05 0.23088273428790948 6.777661865880254e-05']
['59852.30032121875 0.24945410148853542 6.653493330176233e-05 0.032993044171756296 2.2855093013009398e-05 6.563757584480328e-06 4.5468762848068564e-09 0.018558587346612917 1.2855989819817784e-05 0.2308955141419225 6.776557993345309e-05']
['59852.30052384572 0.2496710110968723 6.6547021257101e-05 0.03356968299151578 2.2860344786153588e-05 6.678476232659577e-06 4.547921091876726e-09 0.01888294668272763 1.2858943942211393e-05 0.23078806441414465 6.777800880449343e-05']
['59852.300726472684 0.24898762505907218 6.650474854155281e-05 0.03293773667850365 2.2854118406303014e-05 6.552754508303853e-06 4.546682392963242e-09 0.018527476881658303 1.2855441603545443e-05 0.2304601481774139 6.7735839534159e-05']
['59852.300929099656 0.24916531673454123 6.650941903170195e-05 0.03339961275761636 2.2856973660584673e-05 6.644641834662217e-06 4.54725042775413e-09 0.018787282176159204 1.2857047684078878e-05 0.23037803455838202 6.774072995683761e-05']
['59852.30113172662 0.24903714757866957 6.650307246943624e-05 0.03330365308100318 2.2858269730214652e-05 6.625551263574107e-06 4.5475082726143834e-09 0.018733304858064286 1.2857776723245742e-05 0.23030384272060528 6.773463715219805e-05']
['59852.301334353586 0.24878615434020118 6.648534314764998e-05 0.0330840752372524 2.2854206667062205e-05 6.581867639541112e-06 4.546699951883376e-09 0.018609792320954475 1.285549125022249e-05 0.2301763620192467 6.77167963561871e-05']
['59852.30153698056 0.24867590884617682 6.648117315348365e-05 0.033157378923409496 2.285834693913995e-05 6.59645094453956e-06 4.547523632842023e-09 0.01865102564441784 1.2857820153266221e-05 0.23002488320175898 6.771314438834763e-05']
['59852.30173960752 0.24830889624363794 6.64522729426278e-05 0.03273470522083916 2.2850220867344382e-05 6.512362683190782e-06 4.545907002224293e-09 0.01841327168672203 1.2853249237881214e-05 0.22989562455691592 6.768390203890876e-05']
['59852.30194223449 0.24842578138021942 6.645562722113645e-05 0.03314306289296262 2.28536584916578e-05 6.5936028607757175e-06 4.54659089585176e-09 0.018642972877291473 1.2855182901557513e-05 0.22978280850292795 6.76875624970138e-05']
['59852.30214486146 0.24816272066286543 6.644154360023484e-05 0.0328390092478795 2.2850341510261168e-05 6.533113310050607e-06 4.545931003369988e-09 0.018471942701932215 1.2853317099521907e-05 0.2296907779609332 6.767338085571585e-05']
['59852.302347488425 0.24841370970843235 6.645423594156152e-05 0.033495562249544884 2.285806058890666e-05 6.663730379571692e-06 4.547466665273169e-09 0.018841253765368996 1.2857659081259996e-05 0.22957245594306336 6.768666686746094e-05']
['59852.3025501154 0.247946330597142 6.642082575888532e-05 0.03312028599368559 2.2874805400433803e-05 6.589071540640411e-06 4.550797939680277e-09 0.018630160871448146 1.2867078037744012e-05 0.22931616972569385 6.76556560216631e-05']
['59852.30275274236 0.2479789470463084 6.642763918915456e-05 0.03303098498685225 2.2851580723089295e-05 6.571305669814649e-06 4.546177536928911e-09 0.018579929055104392 1.2854014156737727e-05 0.22939901799120402 6.765986201719685e-05']
['59852.30295536933 0.24788388909465675 6.64205588306738e-05 0.03274358882261528 2.284786290909062e-05 6.514130019609693e-06 4.54543790133468e-09 0.018418268712721092 1.2851922886363474e-05 0.22946562038193566 6.765251331071176e-05']
['59852.3031579963 0.24794094749016352 6.641638374614254e-05 0.03320230433210415 2.2853409066442218e-05 6.605388570619783e-06 4.5465412742817705e-09 0.018676296186808584 1.2855042599873747e-05 0.22926465130335494 6.764900701532459e-05']
['59852.303360623264 0.2479399973992636 6.642421503186627e-05 0.03309651173539151 2.2851228051573135e-05 6.584341802233101e-06 4.546107375160056e-09 0.01861678785115772 1.2853815779009888e-05 0.22932320954810587 6.765646253448618e-05']
['59852.30356325023 0.2473614680459925 6.638023746712329e-05 0.03295101462739493 2.2850305329102242e-05 6.555396072304063e-06 4.545923805357125e-09 0.018534945727909646 1.2853296747620009e-05 0.22882652231808284 6.761318779257533e-05']
['59852.3037658772 0.24748268591513842 6.638169751875045e-05 0.03347301305069278 2.2854293365314332e-05 6.6592443589965985e-06 4.546717199952604e-09 0.018828569841014685 1.285554001798931e-05 0.22865411607412373 6.76150476937272e-05']
['59852.303968504166 0.24721967671067968 6.636456794238597e-05 0.03337774432369824 2.3033089861173598e-05 6.640291247967533e-06 4.582287632606994e-09 0.01877498118208026 1.2956113046910147e-05 0.22844469552859942 6.761742928760217e-05']
['59852.30417113113 0.24686246791935162 6.634479634280785e-05 0.03251653959445763 2.2841275752884106e-05 6.468960010876582e-06 4.5441274282456984e-09 0.018290553521882417 1.284821761099731e-05 0.2285719143974692 6.757742742623597e-05']
['59852.3043737581 0.24693977306606923 6.635120141977035e-05 0.03295799819686077 2.284683204089503e-05 6.556785409305207e-06 4.545232816623424e-09 0.018538873985734183 1.2851343023003452e-05 0.22840089908033506 6.758430991984629e-05']
['59852.30457638507 0.24693127281323318 6.634473529979002e-05 0.03324261608962335 2.2851853249829165e-05 6.613408339962162e-06 4.54623175440113e-09 0.018698971550413137 1.2854167453028905e-05 0.22823230126282004 6.757849896904866e-05']
['59852.30477901204 0.2465998589029448 6.632058858456129e-05 0.03266844299951162 2.2844237099450262e-05 6.499180233110123e-06 4.544716569425963e-09 0.018375999187225284 1.284988336844077e-05 0.2282238597157195 6.75539782158325e-05']
['59852.304981639005 0.24702398890261218 6.635033491861523e-05 0.03321020857566447 2.285072012400338e-05 6.606961069912317e-06 4.5460063261807314e-09 0.018680742323811266 1.28535300697519e-05 0.22834324657880092 6.758387514094193e-05']
['59852.30518426597 0.24652295819129844 6.632171478033014e-05 0.032636612164998566 2.284346499524799e-05 6.492847689790757e-06 4.544562964175496e-09 0.018358094342811694 1.2849449059826993e-05 0.22816486384848675 6.755500124006031e-05']
['59852.30538689294 0.24620169220188245 6.62977205503456e-05 0.03250747907302556 2.2843264762174483e-05 6.467157477410451e-06 4.544523129071223e-09 0.018285456978576874 1.2849336428723147e-05 0.2279162352233056 6.753142377316081e-05']
['59852.30558951991 0.24640839694524208 6.630950912154735e-05 0.03286253415189977 2.284521838324934e-05 6.537793441001343e-06 4.544911789634962e-09 0.018485175460443617 1.2850435340577752e-05 0.22792322148479846 6.754320608605236e-05']
['59852.30579214687 0.24637182257014767 6.630471774122494e-05 0.03296706985865116 2.284702578084031e-05 6.5585901590752036e-06 4.545271359960882e-09 0.018543976795491274 1.2851452001722674e-05 0.2278278457746564 6.753869567363654e-05']
['59852.305994773844 0.24645260579766504 6.6309729899844e-05 0.033123163051335204 2.2848482244565446e-05 6.589643913073531e-06 4.545561114212493e-09 0.01863177921637605 1.2852271262568062e-05 0.227820826581289 6.754377214811812e-05']
['59852.30619740081 0.2462695979073266 6.62929720393561e-05 0.03317345923015741 2.2850767621892486e-05 6.599650019921266e-06 4.546015775585529e-09 0.018660070816963543 1.2853556787314524e-05 0.22760952709036306 6.752756521521837e-05']
['59852.30640002778 0.24589679406586537 6.627024086184777e-05 0.03251539085409545 2.2840378884349535e-05 6.46873147624287e-06 4.5439490019199725e-09 0.01828990735542869 1.2847713122446613e-05 0.2276068867104367 6.750413732775203e-05']
['59852.306602654746 0.24640170839942038 6.630184017388772e-05 0.033205135992323345 2.2850080719321712e-05 6.605951911521084e-06 4.545879120661078e-09 0.01867788899568188 1.2853170404618463e-05 0.2277238194037385 6.753619770089157e-05']
['59852.30680528171 0.24601830612737868 6.627847338558826e-05 0.03314839130118219 2.284972079676922e-05 6.594662913909412e-06 4.545807516344378e-09 0.01864597010691498 1.2852967948182684e-05 0.2273723360204637 6.751321958995248e-05']
['59852.30700790868 0.24585438850882357 6.626980464530682e-05 0.032680325313666256 2.284248615572616e-05 6.5015441444014745e-06 4.544368230240005e-09 0.01838268298893727 1.2848898462595964e-05 0.2274717055198863 6.750393469590666e-05']
['59852.30721053565 0.24644303706320547 6.630318091916484e-05 0.03322107121386936 2.2849056746345125e-05 6.609122123118975e-06 4.545675407710057e-09 0.018686852557801514 1.2852594419819132e-05 0.22775618450540397 6.753740432767513e-05']
['59852.30741316261 0.2461185615619098 6.628488500368536e-05 0.03312797399430348 2.2847208120874907e-05 6.590601019766448e-06 4.545307635358169e-09 0.018634485371795705 1.2851554567992136e-05 0.2274840761901141 6.75192449214731e-05']
['59852.307615789585 0.2460539751433109 6.627971108687194e-05 0.033088077224939436 2.2849761565949407e-05 6.5826638096943426e-06 4.545815627115069e-09 0.01861204343902843 1.285299088084654e-05 0.22744193170428248 6.751443902116302e-05']
['59852.30781841655 0.24616992229224588 6.629071181110666e-05 0.03307837237171849 2.2847609806229082e-05 6.5807330904917246e-06 4.545387548120274e-09 0.018606584459091653 1.2851780516003857e-05 0.22756333783315422 6.752500821810191e-05']
['59852.30802104352 0.24604694587848014 6.630073697097033e-05 0.03254195451777643 2.2840672431699015e-05 6.474016149219693e-06 4.544007401309599e-09 0.01830484941624924 1.2847878242830694e-05 0.2277420964622309 6.753410766595198e-05']
['59852.30822367049 0.24620593230330187 6.628943168512877e-05 0.03315719727191603 2.2848957895476642e-05 6.596414806123179e-06 4.545655741954622e-09 0.018650923465452766 1.2852538816205612e-05 0.2275550088378491 6.752389582332632e-05']
['59852.30842629745 0.245855194419832 6.626801310405981e-05 0.032906198507236376 2.284583864454551e-05 6.5464801884872706e-06 4.5450351866990805e-09 0.01850973666032046 1.285078423755685e-05 0.22734545775951154 6.750253488781056e-05']
['59852.308628924424 0.24570859938783068 6.626030484808999e-05 0.03236592727691631 2.28386256887832e-05 6.438996642342549e-06 4.543600214744236e-09 0.018205834093265424 1.2846726949940548e-05 0.22750276529456526 6.74941952458739e-05']
['59852.30883155139 0.245817380217881 6.626655516761349e-05 0.03286780759966705 2.2843840175958737e-05 6.5388425601004685e-06 4.544637604006332e-09 0.018488141774812717 1.284966009897679e-05 0.22732923844306827 6.750088961222362e-05']
['59852.30903417835 0.24584100969679853 6.626809262189335e-05 0.03264873364496534 2.2842025087100812e-05 6.495259181608633e-06 4.544276503551469e-09 0.018364912675293 1.2848639111494206e-05 0.22747609702150554 6.75022046066738e-05']
['59852.309236805326 0.24592936007686644 6.627211304996649e-05 0.03269142597951019 2.284197262599512e-05 6.503752551702316e-06 4.544266066746106e-09 0.018388927113474483 1.2848609602122255e-05 0.22754043296339196 6.75061459188368e-05']
['59852.30943943229 0.2458597555242687 6.626894006873448e-05 0.03269355011156998 2.2841158645644866e-05 6.5041751343486855e-06 4.544104130500702e-09 0.018390121937758113 1.2848151738175235e-05 0.2274696335865106 6.750294379447979e-05']
['59852.30964205926 0.2457242298762129 6.625760195384884e-05 0.03260456018364033 2.2853833645956272e-05 6.486471150704441e-06 4.546625741692267e-09 0.018340065103297682 1.2855281425850404e-05 0.2273841647729152 6.74931705968277e-05']
['59852.30984468623 0.24576121552997676 6.625750919607404e-05 0.032830427441767576 2.2842810617974044e-05 6.531406013971397e-06 4.544432779953252e-09 0.01846711543599426 1.28490809726104e-05 0.2272941000939825 6.749189882281084e-05']
['59852.31004731319 0.24577741341471415 6.626055062701444e-05 0.03250261634820478 2.2839898416785248e-05 6.466190069045299e-06 4.543853415935158e-09 0.01828272169586519 1.28474428594417e-05 0.22749469171884895 6.749457279975748e-05']
['59852.310249940165 0.24560466918964197 6.625250627750133e-05 0.032343000587385665 2.2838643868105995e-05 6.434435522383129e-06 4.543603831405592e-09 0.018192937830404435 1.2846737175809621e-05 0.22741173135923753 6.748654120722652e-05']
['59852.31045256713 0.2458407076088823 6.626847309626566e-05 0.03266929262662841 2.2842016079510227e-05 6.499349261054401e-06 4.54427471154826e-09 0.018376477102478483 1.28486340447245e-05 0.22746423050640383 6.750257716062209e-05']
['59852.310655194095 0.2456240343245824 6.62519255685985e-05 0.03268056423793338 2.284068022341974e-05 6.501591676874145e-06 4.544008951423185e-09 0.018382817383837523 1.2847882625673604e-05 0.2272412169407449 6.748618917608403e-05']
['59852.31085782107 0.24570063484047 6.625732609493453e-05 0.03282182445075259 2.2843798781744045e-05 6.529694503289634e-06 4.544629368888977e-09 0.01846227625354833 1.2849636814731024e-05 0.22723835858692168 6.749182489398982e-05']
['59852.31106044803 0.245751781559373 6.625747449262358e-05 0.032623650014394254 2.284090677580408e-05 6.490268951863535e-06 4.544054022587981e-09 0.018350803133096765 1.2848010061389794e-05 0.22740097842627624 6.749166088249894e-05']
['59852.311263075 0.24577691109926436 6.625841821653648e-05 0.03304367076997316 2.285793333524377e-05 6.573829426178004e-06 4.547441348961324e-09 0.018587064808109902 1.285758750107462e-05 0.22718984629115446 6.749441118274344e-05']
['59852.31146570197 0.24554374959713166 6.625024345550537e-05 0.03248896326933219 2.2839989017032164e-05 6.463473875306553e-06 4.543871440281585e-09 0.018275041838999355 1.2847493822080591e-05 0.2272687077581323 6.748446380776935e-05']
['59852.31166832893 0.24583750659119033 6.626527584654648e-05 0.03283316633834926 2.2842805692724965e-05 6.531950900133388e-06 4.5444318001060805e-09 0.01846865606532146 1.2849078202157791e-05 0.22736885052586886 6.74995229143441e-05']
['59852.311870955906 0.24581212357556043 6.625868432509705e-05 0.03272949547003049 2.2843686389907183e-05 6.511326236198936e-06 4.544607009243477e-09 0.01841034120189215 1.284957359432279e-05 0.2274017823736683 6.749314624499868e-05']
['59852.31207358287 0.24556873523760464 6.625014539605588e-05 0.03260257368405068 2.284004462067038e-05 6.486075949168013e-06 4.543882502273931e-09 0.018338947697278507 1.2847525099127089e-05 0.22722978754032613 6.7484373496175e-05']
['59852.312276209836 0.2457489041591078 6.625915673489854e-05 0.03292349580645241 2.2844853682954354e-05 6.549921376827735e-06 4.544839234816595e-09 0.01851946639112948 1.2850230196661824e-05 0.22722943776797833 6.749373502279342e-05']
['59852.31247883681 0.2458826179188604 6.626399209932439e-05 0.03302901153361564 2.284497367342689e-05 6.57091306376769e-06 4.544863106162629e-09 0.0185788189876588 1.2850297691302624e-05 0.22730379893120162 6.749849479576877e-05']
['59852.31268146377 0.2456967251947751 6.625614213363178e-05 0.032598556266336315 2.2840983477416765e-05 6.485276709308381e-06 4.544069281888984e-09 0.018336687899814175 1.284805320604693e-05 0.2273600372949609 6.749036110154864e-05']
['59852.31288409074 0.24562012915422743 6.624897655626227e-05 0.03270344371805607 2.2842205238814593e-05 6.50614340482027e-06 4.5443123435961624e-09 0.01839568709140654 1.2848740446833208e-05 0.22722444206282089 6.748345742344768e-05']
['59852.31308671771 0.24573904029478105 6.625566660115262e-05 0.03274768090104243 2.284356222261977e-05 6.5149441127461945e-06 4.544582306946524e-09 0.018420570506836365 1.2849503750223618e-05 0.22731846978794468 6.749017042051458e-05']
['59852.313289344675 0.24590200766343479 6.626846296046767e-05 0.033226808134050594 2.2847072985557505e-05 6.610263447125184e-06 4.54528075104098e-09 0.018690079575403456 1.2851478554376097e-05 0.22721192808803134 6.750310870009222e-05']
['59852.31349197165 0.24590641869614493 6.626450360567858e-05 0.03398032735793576 2.3435811205158634e-05 6.7601713336203e-06 4.662406498336782e-09 0.019113934138838863 1.318264380290173e-05 0.22679248455730608 6.756305599764691e-05']
['59852.31369459861 0.24537247481170651 6.62338718916306e-05 0.03238213794062811 2.2837826163841977e-05 6.442221651418214e-06 4.5434411543110856e-09 0.018214952591603308 1.2846277217161112e-05 0.22715752222010321 6.746816007641744e-05']
['59852.31389722558 0.24552333707982155 6.624468526396879e-05 0.032538695716109976 2.284055226891201e-05 6.473367831227477e-06 4.54398349568269e-09 0.01830301634031186 1.2847810651263006e-05 0.22722032073950968 6.747906760064925e-05']
['59852.31409985255 0.24540104251160416 6.624013407518738e-05 0.03246587539832595 2.284018720876915e-05 6.458880689311413e-06 4.543910869274862e-09 0.018262054911558342 1.2847605304932646e-05 0.2271389876000458 6.747456057189358e-05']
['59852.31430247951 0.24547747111199353 6.624212116467642e-05 0.032651405155085106 2.2841362766769302e-05 6.495790661659985e-06 4.544144739108131e-09 0.01836641539973537 1.2848266556307732e-05 0.22711105571225815 6.747663721539186e-05']
['59852.31450510648 0.2457802047354828 6.625784716797774e-05 0.03281765186351569 2.28435897971705e-05 6.528864393434341e-06 4.5445877927290895e-09 0.018459929173227575 1.2849519260908404e-05 0.2273202755622552 6.749231405553933e-05']
['59852.31470773345 0.24584822685902005 6.627669451044331e-05 0.03234185542062484 2.2837345086281048e-05 6.434207698694817e-06 4.5433454469712946e-09 0.018192293674101474 1.2846006611033088e-05 0.22765593318491859 6.751014828217557e-05']
['59852.314910360416 0.24565285707968945 6.624937294210631e-05 0.0329606127879935 2.2847503048944775e-05 6.557305565683878e-06 4.545366309433388e-09 0.01854034469324634 1.2851720465031434e-05 0.22711251238644312 6.74844140089665e-05']
['59852.31511298739 0.2455120531179203 6.624031428064178e-05 0.03275084194135636 2.2843631171998335e-05 6.515572981735287e-06 4.544596023989552e-09 0.01842234859201295 1.2849542534249063e-05 0.22708970452590735 6.747510636773885e-05']
['59852.31531561435 0.24540219192518092 6.623760607774967e-05 0.03268520935681815 2.2840979626157254e-05 6.502515793913847e-06 4.5440685157052485e-09 0.01838543026321021 1.2848051039713456e-05 0.2270167616619707 6.747216370052336e-05']
['59852.31551824132 0.24577669022602108 6.625859666148097e-05 0.033206745854107045 2.284598607633262e-05 6.6062721833467975e-06 4.5450645173211895e-09 0.018678794542935213 1.28508671679371e-05 0.22709789568308586 6.749330647195158e-05']
['59852.31572086829 0.2452378214559297 6.622450622146128e-05 0.03238965143310974 2.2836530841972294e-05 6.443716413253634e-06 4.543183458213016e-09 0.01821917893112423 1.2845548598609414e-05 0.22701864252480547 6.745882702119568e-05']
['59852.315923495255 0.24562321844606866 6.625414567085257e-05 0.03279582891438021 2.2841977398541195e-05 6.5245228556496476e-06 4.544267016213979e-09 0.018447653764338868 1.2848612286679421e-05 0.22717556468172978 6.748850758661035e-05']
['59852.31612612222 0.24520702540205397 6.622785586396444e-05 0.03235696853773255 2.2838220698977354e-05 6.43721435781134e-06 4.543519644582358e-09 0.01820079480247456 1.284649914317476e-05 0.22700623059957942 6.746229637785567e-05']
['59852.31632874919 0.24551334878317954 6.624689888229704e-05 0.032696283012631694 2.2842253137155615e-05 6.504718827739877e-06 4.544321872668337e-09 0.018391659194605326 1.2848767389650032e-05 0.2271216895885742 6.748142288774461e-05']
['59852.31653137616 0.24547602122559278 6.623573631336964e-05 0.03273216978343739 2.2841350629455138e-05 6.511858273946542e-06 4.5441423244662e-09 0.018411845503183533 1.2848259729068513e-05 0.22706417572240925 6.747036788872459e-05']
['59852.31673400312 0.24528771220483775 6.623042851915374e-05 0.03235667917856927 2.2836749458316455e-05 6.437156791634884e-06 4.543226950552783e-09 0.018200632037945214 1.2845671570303005e-05 0.22708708016689252 6.746466438012438e-05']
['59852.31693663009 0.2454272308291987 6.623906690598988e-05 0.03239639834945293 2.2838005301345687e-05 6.445058669611942e-06 4.543476792585096e-09 0.018222974071567272 1.284637798200695e-05 0.22720425675763142 6.747327924321447e-05']
['59852.31713925706 0.2454212009402396 6.623578257168126e-05 0.03251086333481589 2.2839531382349177e-05 6.467830754901262e-06 4.543780396754176e-09 0.01828736062583394 1.284723640257141e-05 0.22713384031440564 6.74702184379641e-05']
['59852.31734188403 0.2454555476992532 6.623915956085704e-05 0.0326049801873986 2.2841092520900386e-05 6.4865547077972494e-06 4.544090975400771e-09 0.018340301355411714 1.2848114543006466e-05 0.2271152463438415 6.747370085180516e-05']
['59852.317544510996 0.24552178311054057 6.624036979934959e-05 0.03276266109951517 2.2842436459282032e-05 6.5179243285404875e-06 4.544358343446584e-09 0.018428996868477283 1.2848870508346143e-05 0.22709278624206328 6.747503289732309e-05']
['59852.31774713796 0.24572008258244776 6.62549803428551e-05 0.033005296850895545 2.2872707238252853e-05 6.566195177544241e-06 4.550380523577144e-09 0.018565479478628744 1.2865897821517228e-05 0.22715460310381902 6.749261994459719e-05']
['59852.31794976493 0.24559504633463025 6.624708895929608e-05 0.03299985600214913 2.2843415954518203e-05 6.565112755078482e-06 4.544553207832298e-09 0.018562419001208884 1.2849421474416488e-05 0.22703262733342136 6.7481734030833e-05']
['59852.3181523919 0.24576928790504105 6.62549693296905e-05 0.033058714735680825 2.284532415161671e-05 6.576822328060604e-06 4.544932831583075e-09 0.018595527038820465 1.2850494835284399e-05 0.22717376086622057 6.748967460574913e-05']
['59852.31835501886 0.24530034788550348 6.623393462825456e-05 0.032346545466277535 2.2837474222050895e-05 6.435140753631008e-06 4.5433711377164214e-09 0.018194931824781112 1.2846079249903628e-05 0.22710541606072238 6.7468183971667e-05']
['59852.318557645835 0.24560811152100562 6.624526547057261e-05 0.03310071360240216 2.284697487729215e-05 6.585177737114302e-06 4.545261233021743e-09 0.018619151401351213 1.2851423368476833e-05 0.22698896011965441 6.748032513157055e-05']
['59852.3187602728 0.24551611999669326 6.624407882009976e-05 0.03263002280974933 2.2840256717769318e-05 6.491536779216127e-06 4.54392469765107e-09 0.018354387830483997 1.2847644403745241e-05 0.22716173216620927 6.74784405973395e-05']
['59852.31896289977 0.2455333883715384 6.624397380308653e-05 0.03304217823815658 2.2847938758206065e-05 6.573532496407592e-06 4.545452991036745e-09 0.018586225258963078 1.2851965551490912e-05 0.22694716311257532 6.747916036644738e-05']
['59852.31916552674 0.24575467090619119 6.62558852605557e-05 0.03303805134666203 2.2844875073165432e-05 6.5727114774313894e-06 4.544843490263878e-09 0.01858390388249739 1.2850242228655554e-05 0.2271707670236938 6.749052568320272e-05']
['59852.3193681537 0.24538934227595238 6.623532854152015e-05 0.03256326322790163 2.284033799436802e-05 6.478255382403865e-06 4.543940867116621e-09 0.018316835565694665 1.284769012183201e-05 0.22707250671025772 6.746985911108555e-05']
['59852.31957078067 0.24550167948726886 6.625198484051154e-05 0.032374889906123305 2.2838066559776005e-05 6.44077970076929e-06 4.543488979562585e-09 0.01821087557219436 1.2846412439874002e-05 0.2272908039150745 6.748596748867664e-05']
['59852.31977340764 0.24564891526964344 6.624745907020332e-05 0.033015902873672925 2.2843862042902042e-05 6.568305178733698e-06 4.544641954296478e-09 0.01857144536644102 1.28496723991324e-05 0.22707746990320243 6.748214514983418e-05']
['59852.3199760346 0.24536851522730552 6.62294604945059e-05 0.0322786057206202 2.2836964078420255e-05 6.421624570688793e-06 4.543269647865792e-09 0.01815671571784886 1.2845792294111393e-05 0.22721179950945666 6.746373705226215e-05']
['59852.320178661575 0.24548671101139974 6.623842052175162e-05 0.03261953604222109 2.2841114688958814e-05 6.4894505031046585e-06 4.544095385595868e-09 0.018348489023749363 1.284812701253933e-05 0.22713822198765038 6.747297770920406e-05']
['59852.32038128854 0.24552045439820605 6.624226981810804e-05 0.03251397826199215 2.2839341389877484e-05 6.468450449973103e-06 4.543742598952901e-09 0.018289112772370584 1.2847129531806084e-05 0.22723134162583547 6.747656665733691e-05']
['59852.32058391551 0.24568147475494945 6.625256929979851e-05 0.03313949808070353 2.285566522230954e-05 6.592893663910431e-06 4.546990122230108e-09 0.018640967670395733 1.2856311687549116e-05 0.2270405070845537 6.748842633394273e-05']
['59852.32078654248 0.2452821448523988 6.622799304565024e-05 0.03249121922684261 2.28382414992469e-05 6.463922683793039e-06 4.543523782664503e-09 0.018276310815098968 1.284651084332638e-05 0.22700583403729982 6.74624332773611e-05']
['59852.32098916944 0.24539753193198305 6.623625311091364e-05 0.032495108051845786 2.2839148902185933e-05 6.464696340945633e-06 4.543704304743408e-09 0.018278498279163256 1.2847021257479588e-05 0.2271190336528198 6.747063940235893e-05']
['59852.321191796414 0.24547298652170002 6.624477811327918e-05 0.0327228463319559 2.284125376365699e-05 6.510003432209097e-06 4.544123053627961e-09 0.018406601061725193 1.2848205242057056e-05 0.22706638545997482 6.74792338813921e-05']
['59852.32139442338 0.24546846952491502 6.623837377868144e-05 0.03265549903679997 2.2841324713688e-05 6.496605113549178e-06 4.544137168688145e-09 0.018368718208199984 1.2848245151449498e-05 0.22709975131671503 6.7472954317386e-05']
['59852.321597050344 0.24556368487233465 6.624369341596172e-05 0.03286649286190639 2.284419124068555e-05 6.5385810013336196e-06 4.544707446114603e-09 0.018487402234822342 1.284985757288562e-05 0.2270762826375123 6.74784836598406e-05']
['59852.32179967732 0.24555627461575924 6.624352191493898e-05 0.032850030377109665 2.2844149880142114e-05 6.535305894044902e-06 4.544699217695932e-09 0.018478142087124186 1.2849834307579938e-05 0.22707813252863507 6.747831086673153e-05']
['59852.32200230428 0.24541947626071864 6.623197363321033e-05 0.0329692914832588 2.2844729733337447e-05 6.559032137247705e-06 4.5448145758238135e-09 0.018545226459333073 1.2850160475002314e-05 0.22687424980138557 6.746703606639008e-05']
['59852.32220493125 0.24534464659688832 6.623009788609157e-05 0.032567188494817934 2.2839387940281027e-05 6.479036289444721e-06 4.543751859861434e-09 0.018319043528335088 1.2847155716408076e-05 0.22702560306855324 6.746462240317445e-05']
['59852.32240755822 0.245308949500951 6.622823843063029e-05 0.03257494318526477 2.28395135887531e-05 6.480579036090673e-06 4.543776856830712e-09 0.018323405541711434 1.2847226393673616e-05 0.22698554395923956 6.746281043385844e-05']
['59852.32261018518 0.24521977192569905 6.622716385747716e-05 0.03233473704664382 2.2837356978514584e-05 6.432791543187497e-06 4.5433478128559846e-09 0.01818828958873715 1.2846013300414454e-05 0.2270314823369619 6.746152451819893e-05']
['59852.322812812155 0.24624310942073616 6.638109788548378e-05 0.03300808716086065 2.284412377017956e-05 6.566750292073872e-06 4.544694023283927e-09 0.018567049027984114 1.2849819620726002e-05 0.22767606039275204 6.761337161218462e-05']
['59852.32301543912 0.24543072338823593 6.623504235036888e-05 0.03296686998674672 2.2844020364856333e-05 6.558550395823234e-06 4.5446734514485095e-09 0.01854386436754503 1.2849761455231686e-05 0.2268868590206909 6.746997261457512e-05']
['59852.323218066085 0.24572711806932124 6.624964264995141e-05 0.033440279403224464 2.295290210304114e-05 6.652732206746587e-06 4.566334785004197e-09 0.01881015716431376 1.291100743296064e-05 0.2269169609050075 6.749599443063437e-05']
['59852.32342069306 0.24555918744934435 6.624248734302056e-05 0.03282121630142426 2.284394507261828e-05 6.5295735158249575e-06 4.544658472533681e-09 0.018461934169551147 1.2849719103347781e-05 0.22709725327979322 6.74772732883093e-05']
['59852.32362332002 0.247285957838373 6.654441202477059e-05 0.03306473148806587 2.284516565027043e-05 6.578019322914905e-06 4.544901298742141e-09 0.018598911462037054 1.2850405678277116e-05 0.22868704637633597 6.77738275281744e-05']
['59852.32382594699 0.24524763680749778 6.622431528615793e-05 0.032695393253169516 2.284002178378827e-05 6.5045418157191664e-06 4.54387795902059e-09 0.018391158704907852 1.2847512253380902e-05 0.22685647810258994 6.745901352837309e-05']
['59852.32402857396 0.24553787507043245 6.623962376490456e-05 0.03285400717069793 2.2844338416497567e-05 6.536097051991438e-06 4.544736725812086e-09 0.018480379033517586 1.284994035927988e-05 0.22705749603691486 6.747450424977689e-05']
['59852.324231200924 0.24530056124071514 6.622624975402489e-05 0.032771749828550176 2.284084616638823e-05 6.519732473730917e-06 4.544041964727819e-09 0.01843410927855947 1.284797596859338e-05 0.22686645196215566 6.746100090401887e-05']
['59852.3244338279 0.24531015481434887 6.622743779450189e-05 0.03269033956216575 2.2841474949530002e-05 6.503536415839031e-06 4.54416705715925e-09 0.018388316003718236 1.2848329659110625e-05 0.22692183881063063 6.746223456018781e-05']
['59852.32463645486 0.24578267404514656 6.62583937271006e-05 0.03311686723260095 2.2847325586199897e-05 6.5883913997330716e-06 4.545331004342061e-09 0.01862823781833803 1.2851620642237442e-05 0.22715443622680853 6.749325071759003e-05']
['59852.324839081826 0.2452686443467288 6.622325890363213e-05 0.03244064333778286 2.2838800194169824e-05 6.453860930361631e-06 4.543634931487833e-09 0.01824786187750286 1.2846825109220525e-05 0.22702078246922594 6.745784561638765e-05']
['59852.3250417088 0.24525801059761804 6.622347469350275e-05 0.03269849013098781 2.284190320675231e-05 6.505157919985333e-06 4.544252256226557e-09 0.01839290069868064 1.2848570553798173e-05 0.2268651098989374 6.745838988411247e-05']
['59852.32524433576 0.2449577637335555 6.620330231511904e-05 0.03235371056237753 2.2835623995551553e-05 6.436566204208561e-06 4.543003046849909e-09 0.018198962191337358 1.284503849749775e-05 0.22675880154221814 6.743791405010423e-05']
['59852.32544696273 0.24538995855068002 6.623437167871076e-05 0.03270078617809924 2.284182155804902e-05 6.505614704044528e-06 4.544236012733149e-09 0.018394192225180822 1.2848524626402572e-05 0.2269957663254992 6.746907867126152e-05']
['59852.3256495897 0.24520293757059525 6.62225053649489e-05 0.032560979560305056 2.2838954759338474e-05 6.477801061170898e-06 4.543665681251109e-09 0.01831555100267159 1.2846912052127892e-05 0.22688738656792365 6.745712242666295e-05']
['59852.325852216665 0.2453383117661624 6.622857881867604e-05 0.03256570040073759 2.2838235371661327e-05 6.478740242533881e-06 4.543522563620087e-09 0.018318206475414895 1.2846507396559496e-05 0.22702010529074748 6.746300767555092e-05']
['59852.32605484364 0.24545285111476095 6.623213916784146e-05 0.03348539720621912 2.2963534837010895e-05 6.661708108456643e-06 4.568450100216531e-09 0.01883553592849825 1.2916988345818628e-05 0.2266173151862627 6.74799588520498e-05']
['59852.3262574706 0.24514588137836368 6.621224529659086e-05 0.03260844794105176 2.2841500329219523e-05 6.487244595466406e-06 4.544172106288052e-09 0.018342251966841618 1.284834393518598e-05 0.22680362941152207 6.744732292013336e-05']
['59852.32646009757 0.24550280236808464 6.624131491678096e-05 0.0328168346976879 2.2843097175546833e-05 6.528701823458317e-06 4.544489788770989e-09 0.01845946951744944 1.2849242161245092e-05 0.2270433328506352 6.7476031492838e-05']
['59852.32666272454 0.24532365733268896 6.622673519095876e-05 0.032542235675636466 2.283867495585476e-05 6.47407208379871e-06 4.543610016116699e-09 0.018305007567545512 1.2846754662668301e-05 0.22701864976514344 6.746124487004495e-05']
['59852.326865351504 0.24520844997772467 6.592421010987403e-05 0.032508925014317853 2.2724913719132977e-05 6.467445138290563e-06 4.520977937171051e-09 0.01828627032055379 1.2782763967012299e-05 0.22692217965717087 6.715207020820107e-05']
['59852.32706797847 0.24515306518282876 6.591942036258978e-05 0.03268378475059544 2.2730565815460407e-05 6.502232377510968e-06 4.522102386007728e-09 0.018384628922209937 1.2785943271196478e-05 0.22676843626061882 6.714797335939538e-05']
['59852.32727060544 0.24517211144505435 6.592435612784333e-05 0.032594719907238355 2.2725169565265143e-05 6.484513489915985e-06 4.521028836141807e-09 0.018334529947821573 1.2782907880461641e-05 0.22683758149723277 6.715224095107387e-05']
['59852.327473232406 0.24523346074237212 6.592465373824895e-05 0.03269534855497279 2.272791579710827e-05 6.504532923295471e-06 4.521575181607695e-09 0.01839113356217219 1.2784452635873401e-05 0.22684232718019992 6.715282719072154e-05']
['59852.32767585938 0.24517897571725056 6.592716114253299e-05 0.032340713354074985 2.2721026721159676e-05 6.43398049177388e-06 4.5202046434945016e-09 0.01819165126166718 1.2780577530652316e-05 0.22698732445558337 6.715455113639377e-05']
['59852.32787848634 0.24513819276572846 6.592013812115192e-05 0.03264128082277877 2.272774759972583e-05 6.493776489744912e-06 4.521541719801657e-09 0.01836072046281306 1.278435802484578e-05 0.2267774723029154 6.71483761532562e-05']
['59852.32808111331 0.24549743700164056 6.594627907357287e-05 0.0328253982544407 2.2727892719235643e-05 6.530405488942888e-06 4.521570590410814e-09 0.018464286518122895 1.2784439654570049e-05 0.22703315048351766 6.717405467091366e-05']
['59852.32828374028 0.24546915679548004 6.593875647032916e-05 0.03294348617521465 2.2731382989683695e-05 6.55389833433116e-06 4.5222649576539824e-09 0.01853071097355824 1.2786402931697077e-05 0.2269384458219218 6.71670432934567e-05']
['59852.328486367245 0.24521251505558683 6.592365865603099e-05 0.03294129760050403 2.2741118403884395e-05 6.553462931226759e-06 4.524201756770343e-09 0.018529479900283516 1.279187910218497e-05 0.2266830351553033 6.715326456369643e-05']
['59852.32868899421 0.24560734798109587 6.594687968390185e-05 0.033077485428553016 2.2731601584489993e-05 6.5805566387554405e-06 4.522308445708928e-09 0.01860608555356107 1.278652589127562e-05 0.2270012624275348 6.717504138004894e-05']
['59852.32889162118 0.24523884129025506 6.59264610154397e-05 0.032285857018954575 2.272243195939209e-05 6.423067170655981e-06 4.52048420675814e-09 0.018160794573161946 1.2781367977158049e-05 0.2270780467170931 6.715401424626685e-05']
['59852.32909424815 0.24544633557241996 6.595033240798383e-05 0.03233999644295894 2.272273322889706e-05 6.433837866839035e-06 4.520544142421788e-09 0.018191247999164405 1.2781537441254595e-05 0.22725508757325555 6.717748167418719e-05']
['59852.32929687512 0.24516200520838075 6.592172096241372e-05 0.03278373484617266 2.272568886825546e-05 6.522116817227995e-06 4.5211321481891465e-09 0.01844085085097212 1.2783199988393695e-05 0.22672115435740864 6.714970957933925e-05']
['59852.329499502084 0.2452996095403845 6.592885254823975e-05 0.032480950799080845 2.272419062577963e-05 6.461879844997955e-06 4.520834082319174e-09 0.018270534824482973 1.2782357227001042e-05 0.2270290747159015 6.715655034772264e-05']
['59852.32970212905 0.24528147434614508 6.592983655985871e-05 0.03289310335872014 2.2726950227718666e-05 6.5438749914661686e-06 4.521383087681128e-09 0.018502370639280077 1.2783909503091749e-05 0.226779103706865 6.715781183892847e-05']
['59852.32990475602 0.24521945978663623 6.592409848547227e-05 0.03264384394475857 2.2724628714079263e-05 6.494286406660952e-06 4.5209212372171695e-09 0.018362162218926694 1.2782603651669584e-05 0.22685729756770953 6.715193010806111e-05']
['59852.330107382986 0.24515535099566227 6.592015856871604e-05 0.03255605119427735 2.2724470263762045e-05 6.476820593902553e-06 4.520889714528145e-09 0.018312778796781004 1.278251452336615e-05 0.22684257219888126 6.714804526763778e-05']
['59852.33031000995 0.24509176387298776 6.591700068741275e-05 0.03233883639994545 2.272114008632765e-05 6.433607083614289e-06 4.520227196778074e-09 0.018190595474969314 1.2780641298559303e-05 0.22690116839801844 6.714458855058099e-05']
['59852.33051263692 0.2451995403521528 6.592525005983618e-05 0.03229521865841 2.2721399567411128e-05 6.42492960964945e-06 4.5202788188994165e-09 0.018166060495355626 1.2780787256668758e-05 0.22703347985679717 6.715271489934085e-05']
['59852.33071526389 0.24514643605741818 6.591979069443517e-05 0.03270143719846605 2.2725627087504004e-05 6.505744220431317e-06 4.521119857299169e-09 0.01839455842413715 1.2783165236721002e-05 0.22675187763328103 6.71478079959983e-05']
['59852.33091789085 0.24521410311682046 6.592339358730832e-05 0.03257630858569374 2.2725321039733795e-05 6.480850673875136e-06 4.521058971029855e-09 0.018324173579452728 1.2782993084850259e-05 0.22688992953736772 6.715131223047315e-05']
['59852.331120517825 0.2455505887818488 6.594963230749643e-05 0.032813842573789366 2.272920017352892e-05 6.528106559322324e-06 4.521830700177866e-09 0.01845778644775652 1.2785175097610016e-05 0.22709280233409226 6.717748658420114e-05']
['59852.33132314479 0.24536739639447197 6.593603907310506e-05 0.03261288157730977 2.272570597175932e-05 6.488126639374324e-06 4.5211355508231256e-09 0.01834474588723675 1.2783209609114616e-05 0.22702265050723522 6.716376773648571e-05']
['59852.33152577176 0.2451397019182079 6.591982116371486e-05 0.03255028549826747 2.2724384686408285e-05 6.475673545127131e-06 4.520872689454561e-09 0.01830953559277545 1.278246638610466e-05 0.22683016632543243 6.714770486895322e-05']
['59852.33172839873 0.2454052495335533 6.594993413461802e-05 0.03224889830610504 2.2721058697810157e-05 6.415714468355585e-06 4.520211005046987e-09 0.018140005297184087 1.2780595517518214e-05 0.2272652442363692 6.717691146623862e-05']
['59852.33193102569 0.24512927887722674 6.59211264594231e-05 0.03233361475047196 2.272144445827732e-05 6.432568269458291e-06 4.520287749653484e-09 0.018187658297140478 1.2780812507780991e-05 0.22694162058008627 6.714867148379262e-05']
['59852.332133652664 0.2452864828093164 6.592816484923003e-05 0.032616361872498056 2.2725826904190632e-05 6.4888190221026166e-06 4.5211596095659046e-09 0.018346703553280157 1.2783277633607228e-05 0.22693977925603623 6.71560504157677e-05']
['59852.33233627963 0.24557474090332268 6.594844799185429e-05 0.03311392409857772 2.273134964423043e-05 6.587805881823098e-06 4.522258323786837e-09 0.018626582305449967 1.2786384174879616e-05 0.2269481585978727 6.717655404084018e-05']
['59852.332538906594 0.24505973906728012 6.592104628426769e-05 0.0323618988971608 2.272231473212123e-05 6.438195221654121e-06 4.520460885133612e-09 0.018203568129652948 1.2781302036818192e-05 0.22685617093762717 6.71486859511706e-05']
['59852.332741533566 0.24557166809382125 6.598034357957877e-05 0.032870715067542945 2.272860639752487e-05 6.53942098245588e-06 4.521712572195198e-09 0.018489777225492905 1.2784841098607737e-05 0.22708189086832833 6.720757323989546e-05']
['59852.33294416053 0.245198124983955 6.592221084466784e-05 0.03224809890155044 2.2720708827303584e-05 6.415555431872591e-06 4.520141400521282e-09 0.018139555632122124 1.2780398715358265e-05 0.22705856935183286 6.71496572885698e-05']
['59852.3331467875 0.24520919202271138 6.592483829081086e-05 0.03451732417410796 2.6172350529955095e-05 6.867003455768319e-06 5.206823698970175e-09 0.019415994847935724 1.472194717309974e-05 0.22579319717477567 6.754864937389275e-05']
['59852.33334941447 0.24535097204753506 6.593175899437069e-05 0.03270403165739613 2.2727415576594334e-05 6.506260371635531e-06 4.521475665898409e-09 0.018396017807285323 1.2784171261834312e-05 0.22695495424024975 6.715974894937958e-05']
['59852.33355204143 0.24504676451802185 6.591407683844348e-05 0.032493992474318646 2.2725201046215734e-05 6.464474403848324e-06 4.521035099077932e-09 0.018277870766804236 1.278292558849635e-05 0.22676889375121762 6.714215301928637e-05']
['59852.333754668405 0.24548071760863371 6.59417658844897e-05 0.033219226774701585 2.273152555306432e-05 6.6087551836054955e-06 4.522293319737395e-09 0.01868581506076964 1.2786483123598679e-05 0.22679490254786408 6.71700129420482e-05']
['59852.33395729537 0.24542440811606378 6.593587719518484e-05 0.03286063876102613 2.2728154040377316e-05 6.537416364968054e-06 4.521622578600103e-09 0.018484109303077197 1.2784586647712239e-05 0.22694029881298658 6.716387092218076e-05']
['59852.334159922335 0.2452549259219319 6.593133820915509e-05 0.032496493506589154 2.2723144084135135e-05 6.464971968409179e-06 4.520625879474332e-09 0.018279277597456397 1.2781768547326013e-05 0.2269756483244755 6.715887852880962e-05']
['59852.33436254931 0.24568324782004675 6.60012947062735e-05 0.032532900948428776 2.2732188548823163e-05 6.472214998826812e-06 4.522425218552732e-09 0.018299756783491185 1.278685605871303e-05 0.22738349103655556 6.722852512714088e-05']
['59852.33456517627 0.24517666406571392 6.592221469180391e-05 0.03259723570456247 2.2725129152948187e-05 6.485013991890924e-06 4.521020796366801e-09 0.01833594508381639 1.2782885148533355e-05 0.22684071898189753 6.715013434530777e-05']
['59852.334767803244 0.2454701491913392 6.593672771158594e-05 0.032839203258672095 2.2727529359110106e-05 6.533151907271426e-06 4.521498302210687e-09 0.01847205183300305 1.2784235264499434e-05 0.22699809735833615 6.716463900453792e-05']
['59852.33497043021 0.24535877577081106 6.592763819125561e-05 0.03284718855828477 2.2727239311313578e-05 6.534740532153211e-06 4.521440599034999e-09 0.018476543564035185 1.2784072112613888e-05 0.22688223220677586 6.715568462354932e-05']
['59852.335173057174 0.24512840081790727 6.59175800342146e-05 0.032322759795816544 2.2724721596511244e-05 6.43040874484523e-06 4.52093971558989e-09 0.018181552385146803 1.2782655898037574e-05 0.22694684843276047 6.714554080037424e-05']
['59852.335375684146 0.24517828464130986 6.592116821352207e-05 0.03269909711731845 2.272790423594428e-05 6.505278676078971e-06 4.521572881587199e-09 0.018393242128491628 1.2784446132718658e-05 0.22678504251281822 6.714940417871075e-05']
['59852.33557831111 0.2451632925809157 6.59224191557657e-05 0.03257049884006076 2.272530049139472e-05 6.479694861705642e-06 4.5210548830676845e-09 0.018320905597534177 1.2782981526409529e-05 0.22684238698338152 6.715035341718607e-05']
['59852.335780938076 0.2451585424623334 6.592312636329697e-05 0.032304549587165145 2.2722298340641807e-05 6.426785938943224e-06 4.520457624152393e-09 0.018171309142780392 1.2781292816611014e-05 0.226987233319553 6.715072624756319e-05']
['59852.33598356505 0.24496372607005906 6.590942612570834e-05 0.032340219717953075 2.2721766637408048e-05 6.433882285987766e-06 4.520351845155005e-09 0.018191373591348602 1.2780993733542028e-05 0.22677235247871047 6.713721958077387e-05']
['59852.33618619201 0.2453733408911087 6.594747424331306e-05 0.0324808170553848 2.274654036034634e-05 6.46185323753504e-06 4.525280420735528e-09 0.01827045959365395 1.2794928952694815e-05 0.22710288129745476 6.717722505415767e-05']
['59852.33638881898 0.24541126385204093 6.593800992794542e-05 0.03288287822666616 2.2728480674961006e-05 6.541840766078471e-06 4.521687560485827e-09 0.018496619002499715 1.2784770379665566e-05 0.2269146448495412 6.716599963462617e-05']
['59852.33659144595 0.24529636891184872 6.592725531423565e-05 0.032514094358126175 2.27228968870612e-05 6.4684735465651086e-06 4.520576701179039e-09 0.018289178076445974 1.2781629498971924e-05 0.22700719083540274 6.715484380085626e-05']
['59852.336794072915 0.24553538244419298 6.594097376249968e-05 0.032999017261060665 2.2729193244629238e-05 6.564945892840727e-06 4.521829321717073e-09 0.018561947209346622 1.2785171200103946e-05 0.22697343523484637 6.716898557640005e-05']
['59852.33699669989 0.2451816817180305 6.591706043976574e-05 0.03242052296860499 2.272435270384044e-05 6.449858110097265e-06 4.520866326724854e-09 0.018236544169840305 1.2782448395910246e-05 0.2269451375481902 6.71449912057023e-05']
['59852.33719932685 0.2450989900308053 6.59186610205584e-05 0.03249855723599135 2.272520169962371e-05 6.465382534328633e-06 4.521035229069318e-09 0.018280438445245132 1.2782925956038335e-05 0.22681855158556016 6.714665342919812e-05']
['59852.33740195382 0.24504787192340532 6.591357531938944e-05 0.03238890111576177 2.2722840273539195e-05 6.443567142360113e-06 4.520565438276698e-09 0.018218756877615996 1.2781597653865796e-05 0.22682911504578934 6.714140786407544e-05']
['59852.33760458079 0.24542926850352015 6.593741876105509e-05 0.03301074893771547 2.2729358537496908e-05 6.567279835753687e-06 4.521862205688257e-09 0.01856854627746495 1.278526417734201e-05 0.2268607222260552 6.716551327098725e-05']
['59852.337807207754 0.24532531098524607 6.593015079109427e-05 0.03288780165931301 2.2731313131761253e-05 6.542820251881878e-06 4.522251059861894e-09 0.018499388433363566 1.2786363636615705e-05 0.2268259225518825 6.715858752523161e-05']
['59852.33800983472 0.24559531180154837 6.5945289372418e-05 0.0330951267013946 2.2731072918411885e-05 6.584066258474404e-06 4.522203270934458e-09 0.01861600876953446 1.2786228516606685e-05 0.2269793030320139 6.717342354004917e-05']
['59852.33821246169 0.24522263289744628 6.592754384976268e-05 0.032543385947704125 2.2723968127428782e-05 6.474300923155545e-06 4.520789817678714e-09 0.018305654595583566 1.2782232071678688e-05 0.22691697830186272 6.715524175220153e-05']
['59852.338415088656 0.24562514785983147 6.595034191778824e-05 0.03305555346411517 2.273039430436017e-05 6.576193413065442e-06 4.522068264958481e-09 0.018593748823564783 1.2785846796202596e-05 0.22703139903626668 6.717831106368439e-05']
['59852.33861771563 0.2451803714123436 6.59251968755061e-05 0.032668182554946364 2.2726137963146985e-05 6.499128419310171e-06 4.521221492779026e-09 0.01837585268715733 1.2783452604270178e-05 0.22680451872518628 6.715317001869578e-05']
['59852.33882034259 0.24524322008956453 6.592874623821129e-05 0.03263186468939272 2.27251556818843e-05 6.491903209528409e-06 4.521026074130947e-09 0.018355423887783405 1.2782900071059917e-05 0.22688779620178112 6.715654930659528e-05']
['59852.33902296956 0.24512760250622392 6.591970742853974e-05 0.032490899389544546 2.272488958149545e-05 6.463859054184324e-06 4.520973135140642e-09 0.018276130906618806 1.278275038959119e-05 0.22685147159960511 6.714764727812041e-05']
['59852.33922559653 0.24519695530076932 6.592650844125101e-05 0.032606650098734466 2.272638111472095e-05 6.4868869261017845e-06 4.521269866247672e-09 0.018341240680538138 1.2783589377030534e-05 0.22685571462023119 6.715448363746734e-05']
['59852.339428223495 0.24505748965261787 6.591120037290596e-05 0.03254172262617412 2.2723061421239713e-05 6.473970015851231e-06 4.520609434213811e-09 0.018304718977222943 1.2781722049447339e-05 0.22675277067539493 6.713910003229628e-05']
['59852.33963085046 0.2452820130612836 6.593343341269001e-05 0.03276580958423299 2.2726562013842273e-05 6.5185506996731e-06 4.5213058549843715e-09 0.018430767891131055 1.2783691132786278e-05 0.22685124517015257 6.716130136145447e-05']
['59852.33983347743 0.24525176818268005 6.593917366054317e-05 0.032488942972793894 2.2723232598183545e-05 6.463469837438556e-06 4.520643488784754e-09 0.018275030422196564 1.2781818336478242e-05 0.2269767377604835 6.716658025403707e-05']
['59852.3400361044 0.24524687834903158 6.592843642909941e-05 0.032578204503822726 2.272479128004716e-05 6.481227854802543e-06 4.5209535786888815e-09 0.018325240033400282 1.2782695095026528e-05 0.2269216383156313 6.715620614565878e-05']
['59852.34023873137 0.2456401116130203 6.595071432609731e-05 0.03306456313213521 2.2731159826030008e-05 6.5779858295667e-06 4.522220560655729e-09 0.018598816761826054 1.2786277402141879e-05 0.22704129485119423 6.717875862150939e-05']
['59852.340441358334 0.24523204417794175 6.592587979431884e-05 0.032563840059565266 2.2724557115189188e-05 6.4783701394171145e-06 4.520906993070575e-09 0.01831716003350546 1.2782563377293917e-05 0.22691488414443628 6.715367118147386e-05']
['59852.3406439853 0.24534682146615883 6.593259453394229e-05 0.032794017033753474 2.2728291978009793e-05 6.524162393452101e-06 4.521650020420163e-09 0.018446634581486328 1.2784664237630509e-05 0.2269001868846725 6.716066305246089e-05']
['59852.34084661227 0.24534025194278275 6.593317512149838e-05 0.032649420870543636 2.27280859824348e-05 6.49539590079339e-06 4.521609038902643e-09 0.018365299239680794 1.2784548365119572e-05 0.22697495270310195 6.716121096661565e-05']
['59852.341049239236 0.2451776770437263 6.592131316126933e-05 0.03275960652820732 2.2726368429519832e-05 6.517316640887149e-06 4.521267342607094e-09 0.018427278672116618 1.2783582241604904e-05 0.2267503983716097 6.714938200634476e-05']
['59852.3412518662 0.24517200434778763 6.592145770089602e-05 0.03267340796705484 2.2726317525234756e-05 6.500167982018616e-06 4.5212572155213515e-09 0.018378791981468346 1.2783553607944549e-05 0.22679321236631927 6.714951845142462e-05']
['59852.34145449317 0.24515011481356025 6.59225308942054e-05 0.032426790478685054 2.272411720219728e-05 6.451104991609916e-06 4.520819475161585e-09 0.01824006964426034 1.278231592623597e-05 0.2269100451692999 6.715033640969768e-05']
['59852.34165712014 0.24544988630375272 6.595265499903724e-05 0.03233575190783752 2.272184521459659e-05 6.432993443406909e-06 4.520367477589968e-09 0.018188860448158605 1.278103793321058e-05 0.22726102585559413 6.717966680530798e-05']
['59852.34185974711 0.24568514772414005 6.59541678206288e-05 0.033031137671167755 2.273019867435218e-05 6.571336045394081e-06 4.522029345604995e-09 0.018580014940031864 1.2785736754323101e-05 0.22710513278410818 6.718204609315286e-05']
['59852.342062374075 0.24556557146438368 6.594546999820785e-05 0.03300680900520271 2.272902416042103e-05 6.56649601108512e-06 4.521795683482654e-09 0.018566330065426524 1.2785076090236829e-05 0.22699924139895716 6.717338151319819e-05']
['59852.34226500104 0.2452945652027213 6.592633974583069e-05 0.03300943667152621 2.2729762846059215e-05 6.5670187686903465e-06 4.5219426403210395e-09 0.018567808127733492 1.2785491600908309e-05 0.22672675707498782 6.715468016273767e-05']
['59852.34246762801 0.245402969519061 6.593813756383557e-05 0.032985340996346375 2.272987757216574e-05 6.562225086425337e-06 4.521965464354733e-09 0.018554254310444836 1.2785556134343228e-05 0.22684871520861616 6.716627450627097e-05']
['59852.34267025498 0.24528303476426336 6.593953150815184e-05 0.0323446194305221 2.2723910552660143e-05 6.434757580992196e-06 4.5207783635424315e-09 0.01819384842966868 1.278219968587133e-05 0.22708918633459468 6.71670041339052e-05']
['59852.34287288194 0.24513831808691683 6.592695940554538e-05 0.032413830901725366 2.2723581436396685e-05 6.4485267656930235e-06 4.520712887942205e-09 0.018232779882220516 1.2782014557973134e-05 0.2269055382046963 6.715462659132776e-05']
['59852.343075508914 0.2455172356018081 6.594324866465082e-05 0.032868549496572134 2.2727978369394436e-05 6.538990155800104e-06 4.5215876299685e-09 0.018488559091821826 1.278448783278437e-05 0.2270286765099863 6.717108882245831e-05']
['59852.34327813588 0.24527667149815868 6.593035828766242e-05 0.0324522974315164 2.2723505693703725e-05 6.456179438642817e-06 4.52069781941222e-09 0.018254417305227973 1.2781971952708345e-05 0.2270222541929307 6.715795523197054e-05']
['59852.343480762844 0.24527010752213912 6.592883903620915e-05 0.03248724068252287 2.2723835179321974e-05 6.463131177549543e-06 4.5207633684932474e-09 0.018274072883919114 1.278215728836861e-05 0.22699603463822002 6.7156499027324e-05']
['59852.343683389816 0.2451953889978234 6.592540049672787e-05 0.03277380932034074 2.2725890015123707e-05 6.520142196604325e-06 4.5211721650871075e-09 0.018435267742691667 1.2783313133507084e-05 0.22676012125513173 6.715334336668028e-05']
['59852.34388601678 0.24505786308154603 6.59148360797562e-05 0.032328318147275076 2.2720680875041904e-05 6.431514543732815e-06 4.520135839595511e-09 0.01818467895784223 1.278038299221107e-05 0.2268731841237038 6.714241435075691e-05']
['59852.34408864375 0.24532002778085538 6.593111746567756e-05 0.03249524991488889 2.2724786838969043e-05 6.4647245637013225e-06 4.520952695164463e-09 0.018278578077125 1.2782692596920086e-05 0.22704144970373039 6.715883769319068e-05']
['59852.34429127072 0.24520595320223984 6.592569895673002e-05 0.03263085408533421 2.2725367277792093e-05 6.491702156239134e-06 4.521068169799276e-09 0.018354855423000496 1.2783019093758051e-05 0.22685109777923934 6.715358039661606e-05']
['59852.34449389768 0.24534016171211792 6.593831933417963e-05 0.032456760958001776 2.2723521662067986e-05 6.457067429022528e-06 4.520700996217351e-09 0.018256928038876 1.278198093491324e-05 0.22708323367324193 6.716577248298967e-05']
['59852.344696524655 0.24526787423720398 6.592771536250402e-05 0.03246499341320159 2.2724399405398906e-05 6.458705223946069e-06 4.520875617704704e-09 0.018261558794925893 1.2782474665536884e-05 0.2270063154422781 6.715545630471467e-05']
['59852.34489915162 0.24517253224388363 6.592562067979317e-05 0.03234134649020767 2.2721960323169027e-05 6.434106450205339e-06 4.520390377712838e-09 0.018192007400741814 1.2781102681782578e-05 0.22698052484314182 6.715313877830464e-05']
['59852.345101778585 0.24506760264118 6.591633796956768e-05 0.03321518828181101 2.3116805751456107e-05 6.607951750972776e-06 4.598942379799245e-09 0.018683543408518695 1.300320323519406e-05 0.2263840592326613 6.718665719987884e-05']
['59852.34530440556 0.24548724882250855 6.593654235483118e-05 0.03365905412464099 2.2827662488924335e-05 6.696256054667828e-06 4.541419155432183e-09 0.018933217945110558 1.2840560150019937e-05 0.226554030877398 6.717520080116417e-05']
['59852.34550703252 0.24511897225965146 6.591828533612863e-05 0.03239328673027907 2.2723015319745478e-05 6.444439632646266e-06 4.520600262612947e-09 0.018221223785781972 1.2781696117356832e-05 0.22689774847386948 6.714605049659827e-05']
['59852.345709659494 0.24558686079765937 6.594816207278926e-05 0.03303592588245545 2.2731030719264494e-05 6.572288629762837e-06 4.522194875680831e-09 0.01858270830888119 1.2786204779586276e-05 0.22700415248877817 6.717623920289372e-05']
['59852.34591228646 0.2455613316621073 6.59461493282196e-05 0.03302134998893162 2.2730065103344432e-05 6.5693888478824635e-06 4.522002772497324e-09 0.018574509368774035 1.2785661620631242e-05 0.22698682229333328 6.71741598704228e-05']
['59852.346114913424 0.24531296215241716 6.593242512935821e-05 0.03357117902023464 2.33763596756566e-05 6.678773858116593e-06 4.650578992343503e-09 0.018883788198881982 1.3149202317556834e-05 0.22642917395353518 6.723084266188003e-05']
['59852.346317540396 0.245723942266747 6.595446767606277e-05 0.0331215135050735 2.2731774067873194e-05 6.58931574627177e-06 4.522342760187725e-09 0.018630851346603847 1.278662291317867e-05 0.22709309092014313 6.718250912221599e-05']
['59852.34652016736 0.24547945047308745 6.594564488502217e-05 0.03333834183135652 2.28568088492283e-05 6.632452371184626e-06 4.547217639576575e-09 0.018752817280138043 1.2856954977690918e-05 0.2267266331929494 6.718727089709643e-05']
['59852.346722794326 0.24524443115276215 6.59254392844608e-05 0.03253440805042966 2.2726930052175376e-05 6.472514827243292e-06 4.521379073884322e-09 0.018300604528366682 1.2783898154348647e-05 0.22694382662439547 6.715349281213813e-05']
['59852.3469254213 0.245493226614233 6.593867864908886e-05 0.03294725805231479 2.2729135638089965e-05 6.5546487254376885e-06 4.521817861260223e-09 0.018532832654427067 1.2785138796425605e-05 0.22696039395980594 6.716672625661961e-05']
['59852.34712804826 0.24508272660985952 6.591477592889678e-05 0.032825389835146546 2.273037192875371e-05 6.530403813977535e-06 4.522063813473015e-09 0.01846428178226993 1.278583420992396e-05 0.22661844482758958 6.714339313886611e-05']
['59852.347330675235 0.24533010142959444 6.593032567901662e-05 0.032860151184979536 2.2727701054323982e-05 6.5373193647956185e-06 4.521532459888179e-09 0.018483835041550985 1.278433184305724e-05 0.22684626638804345 6.715837241040469e-05']
['59852.3475333022 0.24556089565775774 6.594674858904697e-05 0.03291973008469776 2.273208354606595e-05 6.549172210288283e-06 4.522404328917921e-09 0.018517348172642487 1.2786796994662098e-05 0.22704354748511524 6.717496428618083e-05']
['59852.347735929165 0.2450200049116792 6.591225974654158e-05 0.0323733194746538 2.272194673003153e-05 6.44046727335534e-06 4.520387673444057e-09 0.01820999220449276 1.2781095035642735e-05 0.22681001270718643 6.714002066730168e-05']
['59852.34793855614 0.24532567825029758 6.593462344560041e-05 0.03288974391735808 2.2763679438384402e-05 6.54320665184267e-06 4.5286901319727715e-09 0.01850048095351392 1.2804569684091225e-05 0.22682519729678366 6.716644678489303e-05']
['59852.3481411831 0.24524193871193745 6.59293608321152e-05 0.03243719203331519 2.272421697153843e-05 6.4531743151539495e-06 4.520839323641352e-09 0.018245920518739793 1.2782372046490367e-05 0.22699601819319765 6.71570521603364e-05']
['59852.34834381007 0.24524052919265202 6.592598911517044e-05 0.03277061862530177 2.2725899470541967e-05 6.519507427995136e-06 4.521174046182801e-09 0.018433472976732243 1.2783318452179854e-05 0.2268070562159198 6.715392223439681e-05']
['59852.34854643704 0.24525802694359516 6.59260533717215e-05 0.03264974220216125 2.272788899149849e-05 6.495459827687534e-06 4.5215698488010704e-09 0.018365479988715704 1.2784437557717899e-05 0.22689254695487945 6.715419835600943e-05']
['59852.348749064004 0.24540892778574253 6.59397743900888e-05 0.03266055819194332 2.272559687884703e-05 6.497611600485344e-06 4.521113847477817e-09 0.018371563982968117 1.2783148244351454e-05 0.2270373638027744 6.716742309820198e-05']
['59852.348951690976 0.2453198301389081 6.593544808620788e-05 0.032596700917618016 2.2724660045870747e-05 6.4849075994087845e-06 4.520927470479033e-09 0.018335644266160134 1.2782621275802294e-05 0.22698418587274796 6.716307557735581e-05']
['59852.34915431794 0.2452627171120636 6.593212182042012e-05 0.032583322022254224 2.272505367105442e-05 6.4822459527459635e-06 4.521005779721167e-09 0.018328118637517998 1.278284268996811e-05 0.2269345984745456 6.715985225548958e-05']
['59852.349356944906 0.24543050547685252 6.593678799531363e-05 0.03303054612133753 2.274652846196753e-05 6.571218360294624e-06 4.525278053628275e-09 0.018579682193252362 1.2794922259856735e-05 0.22685082328360015 6.716673318522133e-05']
['59852.34955957188 0.24528496558643326 6.59321261014242e-05 0.03251745303718135 2.272523068635726e-05 6.469141734532471e-06 4.521040995796729e-09 0.01829106733341451 1.2782942261075958e-05 0.22699389825301874 6.715987541012941e-05']
['59852.34976219884 0.2452403438439769 6.592639284365917e-05 0.03259390779841531 2.272621096002995e-05 6.484351925999091e-06 4.521236015047469e-09 0.018334073136608613 1.2783493665016847e-05 0.22690627070736827 6.715435193388438e-05']
['59852.34996482581 0.2451120982196374 6.592287518892597e-05 0.03243797054522251 2.2724508084573063e-05 6.453329195176832e-06 4.5208972387394265e-09 0.018246358431687662 1.2782535797572346e-05 0.22686573978794972 6.71507162626798e-05']
['59852.35016745278 0.24545888907026386 6.594225767725173e-05 0.032803797479646166 2.272754909356125e-05 6.5261081513389314e-06 4.5215022282549975e-09 0.018452136082300966 1.2784246365128202e-05 0.2270067529879629 6.717006999175569e-05']
['59852.350370079745 0.2455135487140208 6.613535366742438e-05 0.034759339499602304 2.709419485314374e-05 6.915150874963843e-06 5.3902187999660195e-09 0.019552128468526296 1.5240484604893353e-05 0.2259614202454945 6.78686774271261e-05']
['59852.35057270671 0.24516092845343757 6.592473122884965e-05 0.032445047939557506 2.2726212799870955e-05 6.454737198042613e-06 4.521236381072206e-09 0.018250339466001096 1.2783494699927411e-05 0.22691058898743646 6.715272090049022e-05']
['59852.35077533368 0.24538691027105564 6.593421723264013e-05 0.032817236589119794 2.2727528479592506e-05 6.5287817772182824e-06 4.52149812723622e-09 0.018459695581379883 1.2784234769770784e-05 0.22692721468967575 6.716217432997234e-05']
['59852.35097796065 0.24536678331075315 6.59367852589479e-05 0.032813685878942206 2.2728236883457877e-05 6.52807538587297e-06 4.521639059707318e-09 0.01845769830690499 1.2784633246945054e-05 0.22690908500384815 6.716477125356344e-05']
['59852.35118058762 0.2453782873539469 6.593651702198284e-05 0.03278761456071775 2.2726420513187398e-05 6.52288866191254e-06 4.521277704323529e-09 0.018443033190403732 1.278361153866791e-05 0.22693525416354315 6.716431344815337e-05']
['59852.35138321458 0.24538776215321875 6.593285313612467e-05 0.032655840731543165 2.2726705329253163e-05 6.496673091558438e-06 4.521334366679452e-09 0.01836891041149303 1.2783771747704904e-05 0.22701885174172573 6.716074703848375e-05']
['59852.35158584155 0.24556558846961074 6.596090005131947e-05 0.032334606384914116 2.2722353001393436e-05 6.432765548862302e-06 4.520468498563412e-09 0.01818821609151419 1.2781323563283807e-05 0.22737737237809655 6.718781561867829e-05']
['59852.35178846852 0.24540059859703856 6.594283151697321e-05 0.03251045962070266 2.2725507698759573e-05 6.4677504385303664e-06 4.521096105663136e-09 0.018287133536645246 1.2783098080552258e-05 0.22711346506039332 6.717041480453231e-05']
['59852.351991095486 0.24580532815998984 6.596429911427863e-05 0.03309163771878735 2.2730746796344102e-05 6.5833721474390225e-06 4.522138391010535e-09 0.018614046216817885 1.2786045072943556e-05 0.22719128194317195 6.719205091560581e-05']
['59852.35219372245 0.24567732149820737 6.595433513203792e-05 0.033054954703206296 2.2731727518452152e-05 6.57607429336747e-06 4.522333499474655e-09 0.01859341202055354 1.2786596729129335e-05 0.22708390947765383 6.718237401746497e-05']
['59852.35239634942 0.24514569207938924 6.592693097626978e-05 0.032310845294408905 2.2722273292327242e-05 6.428038430103354e-06 4.520452640948544e-09 0.018174850478105006 1.2781278726934072e-05 0.22697084160128422 6.715445862968012e-05']
['59852.35259897639 0.24562242035646592 6.595043407359123e-05 0.03307394006252263 2.273147676266553e-05 6.5798513105944326e-06 4.522283613195967e-09 0.01860409128516898 1.278645567899936e-05 0.22701832907129693 6.71785174242936e-05']
['59852.35280160336 0.24650271142302027 6.619944780614614e-05 0.03315324847722097 2.273279769773876e-05 6.5956292183794605e-06 4.522546404878977e-09 0.018648702268436793 1.2787198704978053e-05 0.22785400915458348 6.742313653753628e-05']
['59852.353004230325 0.24562073143234436 6.59515374535235e-05 0.03306965760607754 2.2730335925214753e-05 6.5789993429546675e-06 4.5220566507965226e-09 0.018601682403418612 1.2785813957933298e-05 0.22701904902892575 6.717947849641582e-05']
['59852.35320685729 0.24561592976524535 6.594458324692023e-05 0.03305768553197168 2.273165618396235e-05 6.576617574488405e-06 4.522319307928823e-09 0.01859494811173407 1.2786556603478822e-05 0.22702098165351128 6.717279277642072e-05']
['59852.35340948426 0.24558769391877228 6.594810735520513e-05 0.03308237051193426 2.2731382984076517e-05 6.581528495214867e-06 4.52226495653847e-09 0.01860883341296302 1.278640292854304e-05 0.22697886050580926 6.717622320125415e-05']
['59852.35361211123 0.24545679882212432 6.593918802146677e-05 0.032830480076322326 2.2735299789159868e-05 6.531416485283354e-06 4.523044180151149e-09 0.018467145042931305 1.2788606131402426e-05 0.226989653779193 6.716788640201872e-05']
['59852.35381473819 0.2453438023204696 6.593338672354977e-05 0.03264294403079655 2.272582492020079e-05 6.494107374466687e-06 4.521159214863667e-09 0.01836165601732306 1.2783276517612943e-05 0.22698214630314653 6.716117660794012e-05']
['59852.35401736516 0.24574639502260961 6.595852739456801e-05 0.0331149668843265 2.2733739662814244e-05 6.588013337456228e-06 4.522733802876456e-09 0.018627168872433653 1.278772856033301e-05 0.22711922615017596 6.718670506724328e-05']
['59852.35421999213 0.24526018824429938 6.592980477999372e-05 0.032796259622934726 2.272715397655556e-05 6.524608542394002e-06 4.521423622224304e-09 0.01844789603790078 1.2784024111812502e-05 0.2268122922063986 6.715780245674724e-05']
['59852.3544226191 0.24534182270894683 6.593455439293357e-05 0.03254063666372163 2.2724317006407172e-05 6.473753970485824e-06 4.520859224946154e-09 0.018304108123343415 1.2782428316104034e-05 0.22703771458560343 6.716216149478108e-05']
['59852.354625246066 0.24540939886239427 6.593920048244824e-05 0.03281334730717059 2.2728006518098554e-05 6.5280080291591645e-06 4.521593229975252e-09 0.018457507860283454 1.2784503666430436e-05 0.22695189100211083 6.716711765634635e-05']
['59852.35482787303 0.24552754621480186 6.59422830057284e-05 0.032879779526408345 2.2729844914477462e-05 6.541224299249482e-06 4.521958967314084e-09 0.01849487598360469 1.2785537764393571e-05 0.22703267023119716 6.717034065666417e-05']
['59852.3550305 0.24568836136713285 6.595645964263758e-05 0.0330558009621633 2.2730545282066795e-05 6.576242651237648e-06 4.522098301018863e-09 0.018593888041216852 1.278593172116257e-05 0.22709447332591598 6.718433313332142e-05']
['59852.35523312697 0.24546758078520642 6.594246004120533e-05 0.03259521584947256 2.2725709434300717e-05 6.484612154488562e-06 4.5211362396738495e-09 0.018334808915328314 1.2783211556794153e-05 0.2271327718698781 6.717007171346266e-05']
['59852.35543575393 0.24535978720704846 6.593839502472279e-05 0.03265296735663891 2.2727795280221476e-05 6.496101451784227e-06 4.5215512055348706e-09 0.018367294138109384 1.2784384845124579e-05 0.22699249306893907 6.716630430732837e-05']
['59852.355638380905 0.24557947575277325 6.595076324287128e-05 0.03287912720950571 2.272901849269636e-05 6.541094524925086e-06 4.521794555924657e-09 0.018494509055346962 1.2785072902141701e-05 0.22708496669742628 6.71785773995724e-05']
['59852.35584100787 0.24543765197089806 6.593955847217122e-05 0.03261098819382737 2.2725808177523063e-05 6.487749962698832e-06 4.521155884013766e-09 0.018343680859027895 1.278326709985672e-05 0.22709397111187016 6.716723374720123e-05']
['59852.356043634834 0.2455742501560813 6.595386453790968e-05 0.03246373499458593 2.2723044528878746e-05 6.4584548695171184e-06 4.520606073585376e-09 0.018260850934454585 1.2781712547494294e-05 0.22731339922162672 6.718098260022484e-05']
['59852.35624626181 0.24550089143397807 6.594798730831999e-05 0.03266053799043481 2.2727399627884828e-05 6.4976075815229214e-06 4.521472493003466e-09 0.018371552619619577 1.2784162290685215e-05 0.22712933881435848 6.717567889863796e-05']
['59852.35644888877 0.24542538165493943 6.594784803846649e-05 0.03262880275827196 2.272719682699786e-05 6.491294057686814e-06 4.521432147048936e-09 0.018353701551527976 1.2784048215186296e-05 0.22707168010341144 6.717552046447334e-05']
['59852.35665151574 0.24566637550767584 6.595136758855197e-05 0.033208407287150715 2.2731127319918764e-05 6.606602714948693e-06 4.5222140937703724e-09 0.018679729099022276 1.2786259117454302e-05 0.22698664640865357 6.717939646215189e-05']
['59852.35685414271 0.24562987939942296 6.595498742393787e-05 0.03267405813782705 2.2726369112149763e-05 6.500297329383929e-06 4.521267478412004e-09 0.018379157702527713 1.2783582625584242e-05 0.22725072169689525 6.718244079249386e-05']
['59852.35705676967 0.24568214897623838 6.595926665118876e-05 0.03319357197210547 2.273166270804947e-05 6.603651322796473e-06 4.522320605854716e-09 0.018671384234309328 1.2786560273277826e-05 0.22701076474192905 6.718720846102173e-05']
['59852.357259396646 0.24562666588722587 6.594834914019431e-05 0.03291304502323917 2.2729094936388644e-05 6.547842259568274e-06 4.521809763914026e-09 0.018513587825572032 1.278511590171861e-05 0.22711307806165384 6.717621560446336e-05']
['59852.35746202361 0.24554371711255757 6.594734813446872e-05 0.032759402531820234 2.272951555080921e-05 6.517276057095427e-06 4.521893442494237e-09 0.018427163924148882 1.278535249733018e-05 0.22711655318840868 6.717527792610762e-05']
['59852.357664650575 0.24567462987493535 6.595560672965507e-05 0.032991514935290026 2.272913423325365e-05 6.563453352551873e-06 4.521817581776919e-09 0.01855772715110064 1.2785138006205178e-05 0.22711690272383472 6.718334475831517e-05']
['59852.35786727755 0.24544599090057473 6.594294614633507e-05 0.03261608829440432 2.272650020572994e-05 6.488764595470191e-06 4.52129355865112e-09 0.018346549665602428 1.2783656365723091e-05 0.2270994412349723 6.717063358741929e-05']
['59852.35806990451 0.24551997765238803 6.595225367993465e-05 0.03257806547067045 2.272551204429233e-05 6.481200195035745e-06 4.521096970179409e-09 0.018325161827252127 1.2783100524914433e-05 0.2271948158251359 6.717966526034885e-05']
['59852.358272531485 0.24548534200839647 6.594477549694405e-05 0.032288483644300495 2.272299986983431e-05 6.4235897211652986e-06 4.520597188950781e-09 0.018162272049919027 1.27816874267818e-05 0.22732306995847745 6.717205482057478e-05']
['59852.35847515845 0.24548019260202433 6.59461197390083e-05 0.03260566995582768 2.2725975831418275e-05 6.486691932866095e-06 4.5211892376964555e-09 0.018340689350153067 1.278336140517278e-05 0.22713950325187127 6.71736930460644e-05']
['59852.358677785414 0.2455387233502987 6.595290342930781e-05 0.03253735936283044 2.272519364422077e-05 6.4731019721897835e-06 4.521033626497822e-09 0.018302264641592122 1.2782921424874181e-05 0.22723645870870657 6.718026905952454e-05']
['59852.35888041239 0.24564901864767744 6.595292799861257e-05 0.03275776865134011 2.2727317117460625e-05 6.516951006901886e-06 4.521456078076131e-09 0.018426244866378814 1.27841158785716e-05 0.22722277378129863 6.718052046826461e-05']
['59852.35908303935 0.24535435394094782 6.593676249602022e-05 0.032806391412908184 2.272659987848763e-05 6.526624197964807e-06 4.5213133879162174e-09 0.01845359516976085 1.278371243164929e-05 0.22690075877118696 6.716457363812922e-05']
['59852.359285666316 0.24547948696476019 6.594613365059745e-05 0.0329553976026067 2.274019659443066e-05 6.556268037517066e-06 4.524018368606404e-09 0.018537411151466267 1.2791360584367244e-05 0.22694207581329393 6.717522943065967e-05']
['59852.35948829329 0.24571884021769197 6.596387220865177e-05 0.03269244325825145 2.2727391216694352e-05 6.503954932877533e-06 4.521470819650289e-09 0.01838949933276644 1.2784157559390571e-05 0.22732934088492554 6.719127265696539e-05']
['59852.35969092025 0.24559815015726963 6.595470020966149e-05 0.03271646773263769 2.2726627001592765e-05 6.508734450194727e-06 4.521318783886535e-09 0.0184030130996087 1.278372768839593e-05 0.22719513705766092 6.718218642882489e-05']
['59852.359893547226 0.2455520028564404 6.595202482054625e-05 0.032536714444099314 2.272620368856397e-05 6.472973669684844e-06 4.521234568435276e-09 0.018301901874805862 1.2783489574817233e-05 0.22725010098163456 6.71795146130084e-05']
['59852.36009617419 0.24570496030813577 6.595578684775762e-05 0.032934684271939255 2.2730125757574162e-05 6.552147251312541e-06 4.5220148392729254e-09 0.01852575990296583 1.2785695738635466e-05 0.22717920040516992 6.718362772452675e-05']
['59852.360298801155 0.24585354112364846 6.596851555801677e-05 0.033254872148806486 2.2733004199871314e-05 6.615846605464439e-06 4.52258748717292e-09 0.018705865583703647 1.2787314862427612e-05 0.2271476755399448 6.719643194634044e-05']
['59852.36050142813 0.245699688398328 6.59608875863601e-05 0.032682036307579536 2.2739022275504036e-05 6.501884535825098e-06 4.523784745278981e-09 0.01838364542301349 1.2790700029971018e-05 0.22731604297531452 6.718958772337521e-05']
['59852.36070405509 0.24555113694686176 6.595457629801415e-05 0.03302235125977206 2.289969486423963e-05 6.569588044387001e-06 4.555749541174783e-09 0.018575072583621784 1.2881078361134792e-05 0.22697606436323997 6.720065709795005e-05']
['59852.36090668206 0.24564037606899353 6.595617861976899e-05 0.032603161656245536 2.272601204202794e-05 6.486192922519528e-06 4.521196441568356e-09 0.01833927843163811 1.2783381773640715e-05 0.22730109763735543 6.7183572007549e-05']
['59852.36110930903 0.245921822840742 6.597333026976796e-05 0.03308561891520195 2.2731913367988362e-05 6.5821747445113785e-06 4.522370473065103e-09 0.0186106606398011 1.2786701269493453e-05 0.22731116220094089 6.720104192822568e-05']
['59852.361311935994 0.24563657583507942 6.595587415423348e-05 0.03262848745546537 2.272618191718846e-05 6.491231330186515e-06 4.5212302371577375e-09 0.018353524193699268 1.2783477328418507e-05 0.22728305164138016 6.718329128626607e-05']
['59852.36151456297 0.24548186742248604 6.594678501446796e-05 0.032532124553363934 2.2725846834003955e-05 6.47206053993636e-06 4.521163574476286e-09 0.01829932006126721 1.2783288844127223e-05 0.22718254736121882 6.717433235557197e-05']
['59852.36171718993 0.245627490326912 6.595696097974603e-05 0.03271485361518234 2.2727653159102736e-05 6.5084133317300395e-06 4.521522931436664e-09 0.018402105158540065 1.2784304901995289e-05 0.22722538516837193 6.718451572729331e-05']
['59852.361919816896 0.2456965599916317 6.595498567530575e-05 0.032728357239506636 2.272720747955383e-05 6.511099792431124e-06 4.52143426630761e-09 0.018409700947222482 1.2784054207249029e-05 0.2272868590444092 6.718252881072331e-05']
['59852.36212244387 0.2456186262653294 6.595621979533948e-05 0.032701737314983055 2.272929575653552e-05 6.505803926715298e-06 4.521849715812836e-09 0.018394727239677968 1.278522886305123e-05 0.22722389902565143 6.718396391083017e-05']
['59852.36232507083 0.24560401136453242 6.595756858185517e-05 0.0323047759089338 2.2722767756660514e-05 6.426830964228487e-06 4.5205510115020725e-09 0.01817143644877526 1.2781556863121538e-05 0.22743257491575716 6.718458937193363e-05']
['59852.3625276978 0.2459190029238336 6.597157765785655e-05 0.032935586878038624 2.273091545921567e-05 6.552326819090515e-06 4.522171945422693e-09 0.018526267618896725 1.2786139945808815e-05 0.22739273530493687 6.71992145294899e-05']
['59852.36273032477 0.24580922788227844 6.596818423306143e-05 0.03280125643621971 2.2728217694667733e-05 6.525602626811517e-06 4.521635242218815e-09 0.018450706745373587 1.27846224532506e-05 0.22735852113690486 6.719559436658995e-05']
['59852.362932951735 0.24581621576719023 6.597393809766702e-05 0.032559493782154614 2.2726766100029642e-05 6.477505474999672e-06 4.5213464566412925e-09 0.01831471525246197 1.2783805931266674e-05 0.22750150051472826 6.720108780520661e-05']
['59852.3631355787 0.2456527812771923 6.595710934309903e-05 0.03246112615755068 2.272557780439677e-05 6.457935857879767e-06 4.5211100527365094e-09 0.018259383463622256 1.2783137514973182e-05 0.22739339781357004 6.718443925213812e-05']
['59852.36333820567 0.2457379870778693 6.596421524930553e-05 0.03271741245024176 2.2737047366411245e-05 6.5089223957903695e-06 4.523391849598638e-09 0.01840354450326099 1.2789589143606325e-05 0.22733444257460833 6.719264307882943e-05']
['59852.36354083264 0.24607448917767658 6.598069303271317e-05 0.033101419373702895 2.2732663110120777e-05 6.585318145853307e-06 4.522519629523126e-09 0.018619548397707877 1.2787122999442936e-05 0.2274549407799687 6.720835043117787e-05']
['59852.36374345961 0.24573952511523695 6.59579296916975e-05 0.032996374558740243 2.2730383620353092e-05 6.564420143918958e-06 4.5220661394428075e-09 0.018560460689291385 1.2785840786448612e-05 0.22717906442594557 6.718575901060674e-05']
['59852.363946086574 0.24567128597891863 6.595628884538571e-05 0.03266482030766064 2.2728232203600928e-05 6.498459521465895e-06 4.5216381286793605e-09 0.018373961423059106 1.278463061452552e-05 0.22729732455585952 6.718391785394637e-05']
['59852.36414871354 0.24558906175894385 6.595959637015185e-05 0.0323955417202827 2.2725098491869435e-05 6.444888248653393e-06 4.521014696538995e-09 0.01822249221765902 1.2782867901676556e-05 0.22736656954128484 6.718682955092511e-05']
['59852.36435134051 0.2455916819716277 6.595898817419642e-05 0.03242553010514859 2.2723956447716318e-05 6.450854248261829e-06 4.5207874940737486e-09 0.018239360684146083 1.2782225501840429e-05 0.22735232128748162 6.718611024418427e-05']
['59852.364553967476 0.2457448024626135 6.596699507118243e-05 0.03285197903195769 2.272836368118165e-05 6.535693566609206e-06 4.521664285312958e-09 0.0184792382054762 1.2784704570664678e-05 0.2272655642571373 6.719444255056055e-05']
['59852.36475659444 0.24571924573512438 6.596113760817166e-05 0.03257593014687714 2.272709000370753e-05 6.480775385864736e-06 4.521410895230569e-09 0.018323960707618388 1.2783988127085485e-05 0.227395285027506 6.718855577401274e-05']
['59852.36495922141 0.2458874984541235 6.597071890239208e-05 0.03306105334557553 2.2751479845746284e-05 6.577287579716487e-06 4.526263100132692e-09 0.018596842506886237 1.2797707413232284e-05 0.22729065594723727 6.720057341669884e-05']
['59852.36516184838 0.24591786231291526 6.59759844398668e-05 0.033105838238448176 2.2735308376892254e-05 6.58619725106214e-06 4.523045888626223e-09 0.018622034009127097 1.2788610962001892e-05 0.22729582830378817 6.720401099002187e-05']
['59852.36536447535 0.245707716187346 6.596493936993373e-05 0.03245811993681598 2.2724699726211527e-05 6.457337789267326e-06 4.520935364632007e-09 0.018257692464458988 1.2782643595993984e-05 0.227450023722887 6.719203229089919e-05']
['59852.365567102315 0.2457957849715063 6.596996667788794e-05 0.032884234343709226 2.2730476313042276e-05 6.54211055699199e-06 4.522084580067398e-09 0.01849738181833644 1.2785892926086279e-05 0.22729840315316988 6.719758597895454e-05']
['59852.36576972928 0.2461459789821018 6.598253679882541e-05 0.03324554976443317 2.273638435864086e-05 6.613991976021419e-06 4.523259948393682e-09 0.018700621742493657 1.2789216201735484e-05 0.22744535723960815 6.721055879445641e-05']
['59852.36597235625 0.246252399655902 6.601002128308853e-05 0.032904765940679634 2.273056240733045e-05 6.546195188426254e-06 4.5221017079818165e-09 0.018508930841632295 1.2785941354123377e-05 0.2277434688142697 6.723691847567737e-05']
['59852.36617498322 0.24604644897392566 6.598608963763292e-05 0.0327283403718871 2.2727851659273135e-05 6.5110964367248396e-06 4.521562421790819e-09 0.01840969145918649 1.2784416558341138e-05 0.22763675751473916 6.721313363028771e-05']
['59852.36637761018 0.2460656598020881 6.598509632763596e-05 0.03270844764501191 2.272867208258304e-05 6.5071389044576346e-06 4.521725639822318e-09 0.018398501800319194 1.278487804645296e-05 0.22766715800176893 6.721224623556389e-05']
['59852.366580237154 0.2461636997777646 6.600248109340678e-05 0.03250044599456303 2.273312281135417e-05 6.4657582909073714e-06 4.5226110841776755e-09 0.018281500871941705 1.2787381581386719e-05 0.2278821989058229 6.722978981220682e-05']
['59852.36678286412 0.24579380665510103 6.597046278048565e-05 0.0324776223334968 2.2725223135269868e-05 6.46121766780969e-06 4.521039493555624e-09 0.018268662562591947 1.27829380135893e-05 0.2275251440925091 6.71975108447531e-05']
['59852.36698549109 0.24612822039692484 6.599085470348748e-05 0.032911679527078005 2.27310911825981e-05 6.5475706027384955e-06 4.522206904478855e-09 0.018512819733981375 1.278623879021143e-05 0.22761540066294345 6.72181583122976e-05']
['59852.367188118056 0.24605656767659928 6.598988120237543e-05 0.0329247167722566 2.2749745235406655e-05 6.550164280256589e-06 4.525918010370329e-09 0.018520153184394338 1.2796731694916244e-05 0.22753641449220494 6.721919936428354e-05']
['59852.36739074502 0.24610611205609004 6.599740851706008e-05 0.032397597890018774 2.2723920582222468e-05 6.445297310625058e-06 4.5207803588604575e-09 0.01822364881313556 1.2782205327500137e-05 0.22788246324295447 6.722382541928186e-05']
['59852.36759337199 0.24588187859334507 6.597740159166634e-05 0.032603167721500674 2.2727414786113423e-05 6.4861941291636985e-06 4.521475508637228e-09 0.01833928184334413 1.2784170817188798e-05 0.22754259675000094 6.720455746652215e-05']
['59852.36779599896 0.24615777921949125 6.599134559088612e-05 0.03308350755619778 2.2732203069708888e-05 6.5817547029836835e-06 4.522428107391158e-09 0.01860947300036125 1.278686422671125e-05 0.22754830621913 6.721875920937632e-05']
['59852.36799862592 0.24633080598110074 6.60052046688873e-05 0.03311358806605201 2.27329792817853e-05 6.587739030276215e-06 4.522582529877219e-09 0.018626393287154253 1.2787300846004231e-05 0.22770441269394648 6.723244831409847e-05']
['59852.368201252895 0.24618251109660153 6.599361850690974e-05 0.033068066589944586 2.273296472931864e-05 6.578682820352045e-06 4.522579634755965e-09 0.018600787456843827 1.2787292660241733e-05 0.2275817236397577 6.72210721218742e-05']
['59852.36840387986 0.2461179581823124 6.599432143147746e-05 0.03258381416067415 2.2726954740066115e-05 6.482343860573734e-06 4.521383985384129e-09 0.018328395465379208 1.2783912041287189e-05 0.2277895627169332 6.722111921323932e-05']
['59852.36860650683 0.2464867759077541 6.60125909648231e-05 0.03323485065131106 2.2735449584070444e-05 6.611863455096315e-06 4.523073980901734e-09 0.01869460349136247 1.2788690391039624e-05 0.22779217241639166 6.723996406756115e-05']
['59852.3688091338 0.24616252655423732 6.599879091156518e-05 0.03278562874172576 2.2729534353227338e-05 6.522493595776714e-06 4.521897183116471e-09 0.01844191616722074 1.2785363073690377e-05 0.22772061038701658 6.722578307996556e-05']
['59852.36901176076 0.2466600950011208 6.602463905110765e-05 0.033193108285986456 2.273602254862686e-05 6.603559075374117e-06 4.5231879685784465e-09 0.01867112341086738 1.2789012683602609e-05 0.22798897159025341 6.725185355996069e-05']
['59852.369214387734 0.2465968634718985 6.60217289396893e-05 0.03301986213599978 2.2733310555571277e-05 6.569092848946593e-06 4.522648434702912e-09 0.018573672451499875 1.2787487187508843e-05 0.2280231910203986 6.724870646158565e-05']
['59852.3694170147 0.2466256560523606 6.602601523770995e-05 0.03418846447219713 2.3639333550968172e-05 6.801578896839775e-06 4.702895982543339e-09 0.019231011265610883 1.3297125122419595e-05 0.2273946447867497 6.735167573781359e-05']
['59852.369619641664 0.24662415702759125 6.603123167950448e-05 0.03268188671638235 2.2729308513105242e-05 6.501854775602004e-06 4.521852253651746e-09 0.01838356127796507 1.2785236038621696e-05 0.22824059574962619 6.725760787952295e-05']
['59852.369822268636 0.24658720045913757 6.669883376711136e-05 0.03272149353026581 2.2989681470948817e-05 6.509734300864095e-06 4.573651807762074e-09 0.018405840110774514 1.2931695827408708e-05 0.22818136034836306 6.794088005660049e-05']
['59852.3700248956 0.24705853161806002 6.672369816157702e-05 0.033278939186691926 2.299680781682941e-05 6.620634590520749e-06 4.5750695492284236e-09 0.01871940329251421 1.2935704396966544e-05 0.22833912832554581 6.796605288379586e-05']
['59852.370227522566 0.24696528620541028 6.672142807915742e-05 0.03288643038113189 2.2992516727041743e-05 6.54254744475578e-06 4.574215864039725e-09 0.018498617089386687 1.293329065896098e-05 0.2284666691160236 6.79633649269321e-05']
['59852.37043014954 0.24713179176292063 6.673436948141075e-05 0.032823022912409856 2.2991557777716014e-05 6.529932929660709e-06 4.574025087133019e-09 0.018462950388230544 1.2932751249965256e-05 0.2286688413746901 6.797596726031137e-05']
['59852.3706327765 0.24739147774823883 6.675324793883593e-05 0.033144994810561657 2.2994928343633737e-05 6.593987203570133e-06 4.574695639916548e-09 0.01864405958094093 1.2934647193293976e-05 0.2287474181672979 6.799486163232257e-05']
['59852.370835403475 0.2472684249833631 6.675328399150078e-05 0.03262494586959849 2.298816223019538e-05 6.490526754065142e-06 4.5733495644175045e-09 0.01835153205164915 1.2930841254484902e-05 0.22891689293171394 6.799417312681024e-05']
['59852.37103803044 0.2473643702723846 6.675149562227607e-05 0.03294705831881882 2.2993939521700406e-05 6.554608989721207e-06 4.574498920043389e-09 0.018532720304335584 1.2934090980956478e-05 0.228831649968049 6.799303550595753e-05']
['59852.371240657405 0.24784485605898626 6.678397005019024e-05 0.03351983403592981 2.2999726993101652e-05 6.6685590980477325e-06 4.575650300895278e-09 0.018854906645210518 1.2937346433619679e-05 0.22898994941377573 6.802553629636593e-05']
['59852.37144328438 0.24771961769078793 6.678774412125612e-05 0.03264086851796296 2.29908800051488e-05 6.493694464308041e-06 4.573890248565065e-09 0.018360488541354164 1.29323700028962e-05 0.22935912914943377 6.80282952799656e-05']
['59852.37164591134 0.24779979026301918 6.678453386311519e-05 0.03279939514200962 2.2992209344766402e-05 6.525232334093912e-06 4.574154712279051e-09 0.01844965976738041 1.29331177564311e-05 0.22935013049563877 6.802528572681847e-05']
['59852.37184853831 0.2479783682407237 6.679575219765792e-05 0.03301761307634393 2.2996826347424798e-05 6.5686454127446725e-06 4.575073235773241e-09 0.018572407355443462 1.2935714820426447e-05 0.22940596088528023 6.803679320460601e-05']
['59852.37205116528 0.24817078055506103 6.68102438221958e-05 0.033039114131408864 2.2996097180119097e-05 6.572922911738766e-06 4.574928172546937e-09 0.018584501698917486 1.293530466381699e-05 0.22958627885614355 6.805094258220834e-05']
['59852.372253792244 0.24816034680609184 6.681159967961717e-05 0.03304450143202667 2.2996060467516504e-05 6.573994681142823e-06 4.574920868806716e-09 0.018587532055515 1.2935284012978033e-05 0.22957281475057684 6.805226979495854e-05']
['59852.372456419216 0.24820540212453035 6.681407083040566e-05 0.03283744438320012 2.2998463327191398e-05 6.532801990114366e-06 4.575398902550236e-09 0.018471062465550064 1.2936635621545162e-05 0.2297343396589803 6.80549528112032e-05']
['59852.37265904618 0.24860955016069458 6.684107750613799e-05 0.033384286961265885 2.300140911954129e-05 6.641592864354719e-06 4.575984949317496e-09 0.01877866141571206 1.2938292629741975e-05 0.22983088874498253 6.808178213262622e-05']
['59852.372861673146 0.2484449298347457 6.683701695233244e-05 0.03283111651341444 2.299600575211664e-05 6.531543100419826e-06 4.574909983523777e-09 0.018467503038795623 1.293525323556561e-05 0.22997742679595007 6.807721800539872e-05']
['59852.37306430012 0.2486520500156334 6.684515079593283e-05 0.03323519581425738 2.299896694622558e-05 6.6119321230826636e-06 4.575499094373642e-09 0.018694797645519772 1.2936918907251888e-05 0.22995725237011364 6.808552016210063e-05']
['59852.37326692708 0.2487932603589854 6.685829014892141e-05 0.033160215266650875 2.2998943323554214e-05 6.597015217098524e-06 4.575494394792496e-09 0.018652621087491116 1.2936905619499244e-05 0.2301406392714943 6.809841766623651e-05']
['59852.37346955405 0.2489340318615938 6.68752703308382e-05 0.033043945843471006 2.2997393398182903e-05 6.5738841503116244e-06 4.575186046937161e-09 0.01858721953695244 1.293603378647788e-05 0.23034681232464135 6.811492312223208e-05']
['59852.37367218102 0.24908388111481714 6.688397395707561e-05 0.032785517675405815 2.2996290602829172e-05 6.522471499834426e-06 4.574966652772455e-09 0.018441853692415768 1.2935413464091407e-05 0.23064202742240136 6.812335057656638e-05']
['59852.373874807985 0.24919291318874337 6.689035006765654e-05 0.0330706176396111 2.3000259730892298e-05 6.579190335557668e-06 4.575756285711219e-09 0.01860222242228124 1.2937646098626916e-05 0.23059069076646213 6.813003463045469e-05']
['59852.37407743496 0.24928695483847046 6.689924552145119e-05 0.032988068546942466 2.2999846867023635e-05 6.5627677153752135e-06 4.575674149054317e-09 0.018555788557655137 1.2937413862700793e-05 0.23073116628081533 6.813872415003241e-05']
['59852.37428006192 0.24944616661280827 6.691232287963077e-05 0.033202756618551765 2.3023235437692352e-05 6.605478550149572e-06 4.580327157346543e-09 0.018676550597935368 1.2950569933701947e-05 0.2307696160148729 6.815406234961835e-05']
['59852.37448268889 0.24956571523288146 6.691556076835644e-05 0.0332551489032186 2.3001736521294446e-05 6.6159016640053276e-06 4.576050083826735e-09 0.01870602125806046 1.2938476793228124e-05 0.230859693974821 6.815494446239764e-05']
['59852.37468531586 0.24993913105765123 6.694088232849352e-05 0.033525573897568245 2.3005657057068433e-05 6.6697010072382575e-06 4.5768300496367335e-09 0.018858135317382136 1.2940682094600994e-05 0.23108099574026908 6.818022425887688e-05']
['59852.374887942824 0.24992859687363073 6.694591654187617e-05 0.033314305048546516 2.300519802255085e-05 6.627670405184328e-06 4.576738727621079e-09 0.018739296589807414 1.294042388768485e-05 0.2311893002838233 6.818511796590817e-05']
['59852.37509056979 0.25014273413901905 6.696568468030741e-05 0.03311985787932312 2.300158377150847e-05 6.588986369994165e-06 4.576019695222367e-09 0.01862992005711925 1.2938390871473514e-05 0.2315128140818998 6.820414124556799e-05']
['59852.37529319676 0.24997097172308247 6.6947572563429e-05 0.033055110140520566 2.3001901237462377e-05 6.576105216638604e-06 4.576082853067152e-09 0.01859349945404282 1.2938569446072585e-05 0.23137747226903965 6.818639198143889e-05']
['59852.375495823726 0.25055170952977834 6.699816806671793e-05 0.03296989974771559 2.3000728542262735e-05 6.559153147616461e-06 4.575849552769948e-09 0.018545568608090018 1.2937909805022788e-05 0.23200614092168834 6.823594385966305e-05']
['59852.37569845069 0.2504741256170767 6.698649881669815e-05 0.03333627469533006 2.3005468371733607e-05 6.632041127538809e-06 4.576792511882075e-09 0.01875165451612316 1.2940575959100152e-05 0.23172247110095356 6.822499197414935e-05']
['59852.37590107766 0.25058472170640866 6.699557318736581e-05 0.03326468906240472 2.300536765242422e-05 6.6177996183707705e-06 4.576772474412133e-09 0.018711387597602654 1.2940519304488622e-05 0.231873334108806 6.82338908942875e-05']
['59852.37610370463 0.25065954727046935 6.700145703802234e-05 0.03305093196397055 2.300216367364582e-05 6.5752739948247965e-06 4.5761350630869535e-09 0.01859114922973343 1.2938717066425774e-05 0.23206839804073592 6.823932623160176e-05']
['59852.3763063316 0.2510276013303191 6.702323137683966e-05 0.03375741938857231 2.3014713475565707e-05 6.715825202146838e-06 4.578631766849921e-09 0.018988548406071924 1.2945776330005708e-05 0.23203905292424717 6.826204413127342e-05']
['59852.376508958565 0.2510018725982849 6.702179587593115e-05 0.03343865183590021 2.300816437478064e-05 6.652408412515499e-06 4.577328864646483e-09 0.018809241657693865 1.2942092460814108e-05 0.232192630940591 6.825993612434196e-05']
['59852.37671158553 0.25122501735767977 6.704093263449879e-05 0.033481991966893186 2.3009350728445248e-05 6.6610306576177276e-06 4.577564882208955e-09 0.018833620481377416 1.294275978475045e-05 0.23239139687630236 6.827885235817278e-05']
['59852.3769142125 0.25114287509964717 6.703726755597254e-05 0.034732594861568385 2.4642402261332604e-05 6.9098301982834655e-06 4.9024501619374796e-09 0.019537084609632216 1.386135127199959e-05 0.23160579049001495 6.84553306942331e-05']
['59852.37711683947 0.2514179683021831 6.705018419525359e-05 0.03338610060141103 2.300699853015438e-05 6.64195367659733e-06 4.57709692722755e-09 0.0187796815882937 1.2941436673211839e-05 0.2326382867138894 6.828768544755479e-05']
['59852.37731946643 0.2519852907779349 6.711468471492427e-05 0.0339227720040234 2.3015248282385752e-05 6.7487210597746046e-06 4.5787381632861825e-09 0.01908155925226316 1.2946077158841985e-05 0.23290373152567176 6.835189696114059e-05']
['59852.377522093404 0.25152651572484386 6.706572156415728e-05 0.03343098513294991 2.3010519568116044e-05 6.6508831704258025e-06 4.5777974154730665e-09 0.018804929137284324 1.2943417257065274e-05 0.23272158658755954 6.830331660477086e-05']
['59852.37772472037 0.25168898066613465 6.707187594959093e-05 0.0334114929909525 2.3008163429067504e-05 6.647005331987882e-06 4.577328676502833e-09 0.01879396480741078 1.2942091928850472e-05 0.23289501585872388 6.830910837430196e-05']
['59852.37792734734 0.2520606776740745 6.710030068343433e-05 0.033919070784118675 2.3016599966210283e-05 6.747984725470472e-06 4.579007072238897e-09 0.019079477316066754 1.2946837480993282e-05 0.23298120035800773 6.833791738534729e-05']
['59852.378129974306 0.2518787570487071 6.709578318884479e-05 0.03333959406922134 2.301047828809215e-05 6.632701495992266e-06 4.577789203073249e-09 0.018753521663937 1.2943394037051834e-05 0.2331252353847701 6.833282937887802e-05']
['59852.37833260127 0.2523346015365888 6.711773849476165e-05 0.03392802757622171 2.3016731628153207e-05 6.749766622642277e-06 4.579033265550189e-09 0.019084515511624708 1.2946911540836178e-05 0.2332500860249641 6.835505350080159e-05']
['59852.37853522824 0.2521713477733545 6.711316203771803e-05 0.03365331939650289 2.3024880227668987e-05 6.6951151667547434e-06 4.580654377915454e-09 0.018929992160532875 1.2951495128063803e-05 0.2332413556128216 6.835142825686423e-05']
['59852.37873785521 0.2525344116727768 6.713563529875879e-05 0.033947985389207895 2.3016134204299933e-05 6.753737103379846e-06 4.578914411850977e-09 0.019095741781429438 1.294657548991871e-05 0.23343866989134734 6.837256280032299e-05']
['59852.37894048217 0.2521846190196303 6.711416215804046e-05 0.03349309300019224 2.304423413988398e-05 6.663239138021442e-06 4.584504716411933e-09 0.01883986481260813 1.2962381703684738e-05 0.23334475420702216 6.835447389606456e-05']
['59852.379143109145 0.25257480964091694 6.715297371837951e-05 0.03353153839416913 2.3012329339778033e-05 6.670887606134614e-06 4.5781574581054074e-09 0.018861490346720133 1.2944435253625142e-05 0.2337133192941968 6.838918250174265e-05']
['59852.37934573611 0.2529220882594141 6.716074181674346e-05 0.034477156184612584 2.32120240655158e-05 6.859012288165504e-06 4.61788546149359e-09 0.019393400353844577 1.3056763536852635e-05 0.23352868790556952 6.841815779040355e-05']
['59852.37954836308 0.25276138422417227 6.715454293112585e-05 0.033853801936401924 2.301987289290733e-05 6.734999900790431e-06 4.579658200316663e-09 0.019042763589226082 1.2948678502260372e-05 0.2337186206349462 6.83915266041293e-05']
['59852.37975099005 0.25266536609000956 6.714570837519488e-05 0.033577207753614696 2.301317608330604e-05 6.679973236514117e-06 4.578325912377924e-09 0.018887179361408265 1.2944911546859647e-05 0.2337781867286013 6.838213866327037e-05']
['59852.37995361701 0.2529518014194816 6.716305682431479e-05 0.03404849751436263 2.3019086816929243e-05 6.773733355328656e-06 4.579501815469715e-09 0.01915227985182898 1.2948236334522699e-05 0.2337995215676526 6.83998028225286e-05']
['59852.380156243984 0.25304749654943715 6.717069536298609e-05 0.03387238541834418 2.3018242126484293e-05 6.738696967054141e-06 4.579333769645094e-09 0.019053216797818597 1.2947761196147413e-05 0.23399427975161854 6.840721332973258e-05']
['59852.38035887095 0.25285508519473493 6.715846506239426e-05 0.03328282830159936 2.3010161168846008e-05 6.621408305347962e-06 4.577726114203783e-09 0.018721590919649637 1.2943215657475879e-05 0.23413349427508529 6.839434377997028e-05']
['59852.380561497914 0.25312464967509873 6.718074637327589e-05 0.033990401996062916 2.301872536450865e-05 6.762175619192548e-06 4.5794299067954274e-09 0.01911960112278539 1.2948033017536115e-05 0.23400504855231335 6.84171341280357e-05']
['59852.380764124886 0.25287245592566054 6.716908284537538e-05 0.033417749835260635 2.3013012497184217e-05 6.648250091612627e-06 4.578293367953038e-09 0.018797484282334107 1.2944819529666121e-05 0.23407497164332644 6.840507322519673e-05']
['59852.38096675185 0.2531834944453848 6.718827818537532e-05 0.033628753116818746 2.3016083670648746e-05 6.690227860698357e-06 4.5789043585005035e-09 0.018916173628210544 1.294654706473992e-05 0.23426732081717425 6.84242486726373e-05']
['59852.38116937882 0.2531776670235021 6.71890734594416e-05 0.033657460953356554 2.3016688168308303e-05 6.695939103311439e-06 4.579024619488761e-09 0.01893232178626306 1.294688709467342e-05 0.23424534523723903 6.842509391868206e-05']
['59852.38137200579 0.25339719841167085 6.719745325483372e-05 0.034085756808878154 2.302220652914324e-05 6.7811458564514835e-06 4.580122462494567e-09 0.01917323820499396 1.2949991172643072e-05 0.2342239602066769 6.843390968888959e-05']
['59852.38157463275 0.25335318445407173 6.721001058721261e-05 0.03345478584539044 2.301501318774349e-05 6.655618171718326e-06 4.57869139269317e-09 0.01881831703803212 1.2945944918105713e-05 0.23453486741603963 6.844547474417763e-05']
['59852.381777259725 0.25321854281588196 6.719348473898898e-05 0.03351102978813429 2.301406863117541e-05 6.6668075486016536e-06 4.578503479134619e-09 0.01884995425582554 1.2945413605036166e-05 0.23436858856005643 6.842914674883943e-05']
['59852.38197988669 0.25365439281565666 6.721671880237304e-05 0.03407425707143955 2.30200946122522e-05 6.778858056379467e-06 4.579702309978806e-09 0.019166769602684746 1.294880321939186e-05 0.23448762321297192 6.845260251715652e-05']
['59852.382182513655 0.25359226796825596 6.720938248476815e-05 0.03426556715671933 2.3041228725867424e-05 6.8169179885489785e-06 4.583906808290968e-09 0.01927438152565462 1.2960691158300425e-05 0.23431788644260135 6.844764867608461e-05']
['59852.38238514063 0.25297099238610793 6.717466634338618e-05 0.03340808961256678 2.3012198875904076e-05 6.6463282513712565e-06 4.5781315031423635e-09 0.01879205040706881 1.294436186769604e-05 0.23417894197903913 6.841046924635968e-05']
['59852.38258776759 0.2534346458479419 6.720214925500043e-05 0.033940880765912895 2.3018784388778006e-05 6.752323683484589e-06 4.579441649300716e-09 0.019091745430826 1.2948066218687628e-05 0.2343429004171159 6.843815663279422e-05']
['59852.38279039456 0.2531898525159424 6.718917976818926e-05 0.03352737763351424 2.3015012529209853e-05 6.670059849103054e-06 4.578691261682065e-09 0.018859149918851757 1.2945944547680541e-05 0.23433070259709063 6.842501997189093e-05']
['59852.38299302153 0.2534841213167943 6.720034412466635e-05 0.0341069525313205 2.3020758989299724e-05 6.785362611450362e-06 4.5798344835927945e-09 0.01918516079886778 1.2949176931481094e-05 0.23429896051792654 6.843659425830877e-05']
['59852.383195648494 0.25340351857869137 6.71999029279175e-05 0.03400906520387614 2.3018840813097514e-05 6.765888546414332e-06 4.579452874562416e-09 0.01913009917718033 1.2948097957367351e-05 0.23427341940151103 6.843595688112438e-05']
['59852.383398275466 0.2532883191096583 6.71951396974178e-05 0.03350009201379528 2.3013290408809273e-05 6.6646315475360565e-06 4.578348656714126e-09 0.018843801757759845 1.2944975854955215e-05 0.23444451735189847 6.843068901334304e-05']
['59852.38360090243 0.25339434383756615 6.720989570334503e-05 0.033641775915995535 2.303952073790097e-05 6.6928186642757055e-06 4.583567014881465e-09 0.018923498952747485 1.2959730415069296e-05 0.23447084488481867 6.844797069954513e-05']
['59852.383803529396 0.2531818327562083 6.719058592529618e-05 0.033695110825851964 2.3015315906304563e-05 6.703429307454469e-06 4.57875161663737e-09 0.018953499839541726 1.2946115197296315e-05 0.2342283329166666 6.842643301887272e-05']
['59852.38400615637 0.25326942472802433 6.719170151978616e-05 0.03378132059864526 2.302439220416204e-05 6.720580196808073e-06 4.58055728872361e-09 0.01900199283673796 1.2951220614841147e-05 0.23426743189128638 6.842849456577516e-05']
['59852.38420878333 0.25330361724497974 6.71991582247698e-05 0.03350901878941263 2.301441928474119e-05 6.666407473117773e-06 4.578573239445004e-09 0.0188488230690446 1.294561084766692e-05 0.23445479417593515 6.843475510540589e-05']
['59852.3844114103 0.25330306625407095 6.718637122887975e-05 0.03402212964323961 2.3020939196730068e-05 6.768487634043607e-06 4.579870334721946e-09 0.01913744792432228 1.2949278298160664e-05 0.23416561832974866 6.842289300627426e-05']
['59852.38461403727 0.2535475435130305 6.72096446439491e-05 0.034269702648935876 2.302239550705911e-05 6.817740718584455e-06 4.580160058456374e-09 0.01927670774002643 1.2950097472720748e-05 0.23427083577300406 6.844590095629457e-05']
['59852.384816664235 0.2530013494962694 6.71806474061554e-05 0.03340799975751498 2.30140370809902e-05 6.646310375276688e-06 4.578497202424705e-09 0.018791999863602176 1.2945395858056986e-05 0.23420934963266724 6.841653791176497e-05']
['59852.38501929121 0.2531104004919995 6.71851997044811e-05 0.03356903849164225 2.305371358499844e-05 6.678348013483708e-06 4.586390592096601e-09 0.018882584151548764 1.2967713891561622e-05 0.23422781634045076 6.842523410924078e-05']
['59852.38522191817 0.2534187484955972 6.720612083757548e-05 0.033791328094972276 2.3016549817849938e-05 6.722571124943595e-06 4.578997095539601e-09 0.019007622053421904 1.294680927254059e-05 0.2344111264421753 6.844181871030562e-05']
['59852.38542454514 0.25308868312037686 6.718425453603656e-05 0.03407049741776719 2.321929699499174e-05 6.778110097046629e-06 4.619332364839658e-09 0.01916465479749404 1.3060854559682852e-05 0.2339240283228828 6.844201910662877e-05']
['59852.38562717211 0.2534742321658095 6.720509468054345e-05 0.03429895861844795 2.3023851357362744e-05 6.823561008787946e-06 4.580449690671656e-09 0.019293164222876972 1.2950916388516542e-05 0.23418106794293253 6.84415881341393e-05']
['59852.385829799074 0.25334306001082807 6.719565752536568e-05 0.033671735019600184 2.3015150172536653e-05 6.698778838562308e-06 4.57871864495187e-09 0.0189403509485251 1.2946021972051866e-05 0.23440270906230298 6.84313953910563e-05']
['59852.38603242604 0.25315086103564255 6.718755747683927e-05 0.033562761468796845 2.302212280836075e-05 6.677099239466524e-06 4.5801058067741015e-09 0.018879053326198224 1.2949944079702922e-05 0.23427180770944434 6.842418381954595e-05']
['59852.38623505301 0.25312380367300163 6.718351715540243e-05 0.033736639446169114 2.3028608023608523e-05 6.7116911639585455e-06 4.581395999353723e-09 0.018976859688470123 1.2953592013279793e-05 0.2341469439845315 6.842090706368017e-05']
['59852.386437679976 0.2534082083808295 6.720342994482509e-05 0.03385161698979225 2.301822076282452e-05 6.7345652194737786e-06 4.579329519480025e-09 0.01904153455675814 1.2947749179088791e-05 0.23436667382407136 6.843935421344658e-05']
['59852.38664030695 0.25323327329661693 6.719211430680995e-05 0.03397583679525669 2.3020120675500696e-05 6.759277964560753e-06 4.579707495097346e-09 0.019111408197331887 1.2948817879969141e-05 0.23412186509928504 6.842844517821534e-05']
['59852.38684293391 0.2533354779832311 6.720105673211596e-05 0.03390715763382578 2.3020699228158782e-05 6.745614679524333e-06 4.579822594491562e-09 0.019072776169027 1.2949143315839313e-05 0.23426270181420408 6.843728763274604e-05']
['59852.38704556088 0.25309377713433484 6.718613221293947e-05 0.033477973465939656 2.301433237037733e-05 6.66023120225451e-06 4.578555948381711e-09 0.018831360074591057 1.294556195833725e-05 0.2342624170597438 6.84219550740238e-05']
['59852.38724818785 0.2531613296312334 6.718586280099019e-05 0.033822050319466834 2.3016717378259784e-05 6.728683117307455e-06 4.579030430623968e-09 0.01902490330470009 1.2946903525271129e-05 0.2341364263265333 6.842194436879264e-05']
['59852.387450814815 0.2532045172145898 6.71897939328769e-05 0.033819146471421084 2.301653830884493e-05 6.7281054150943695e-06 4.578994805895804e-09 0.01902326989017436 1.294680279872527e-05 0.23418124732441545 6.842578542809387e-05']
['59852.38765344178 0.2533970224240967 6.719821779838584e-05 0.033720418617809646 2.3017230558585888e-05 6.708464132690478e-06 4.579132524605964e-09 0.018967735472517924 1.294719218920456e-05 0.23442928695157875 6.843413081835334e-05']
['59852.38785606875 0.25347587364236474 6.72090244039352e-05 0.033846303277064504 2.3017805008103187e-05 6.733508089915289e-06 4.579246807706258e-09 0.01903854559334878 1.2947515317058043e-05 0.23443732804901596 6.844480341278079e-05']
['59852.38805869572 0.25343950388765446 6.72054151097586e-05 0.03401061549680953 2.302043195239314e-05 6.766196967393818e-06 4.579769421667475e-09 0.01913097121695536 1.2948992973221142e-05 0.2343085326706991 6.844153884225207e-05']
['59852.38826132269 0.25315926554642687 6.718685757876986e-05 0.03366764843314714 2.301752655734392e-05 6.6979658380193395e-06 4.579191411687827e-09 0.018938052243645264 1.2947358688505956e-05 0.23422121330278162 6.84230073025056e-05']
['59852.388463949654 0.2533001760275233 6.719723126238935e-05 0.03378497607919037 2.3018730652349915e-05 6.721307431555736e-06 4.579430958778022e-09 0.019004049044544582 1.2948035991946826e-05 0.23429612698297872 6.843332174737528e-05']
['59852.38866657662 0.2531818146798341 6.718690603633029e-05 0.03352818845790061 2.3015960415741262e-05 6.670221157489392e-06 4.5788798377157704e-09 0.018859606007569092 1.2946477733854459e-05 0.234322208672265 6.842288819136375e-05']
['59852.38886920359 0.2533953313841434 6.720128013876793e-05 0.034130264789771304 2.302248636668848e-05 6.790000437909214e-06 4.580178134405302e-09 0.019198273944246357 1.295014858126227e-05 0.23419705743989702 6.843769721846239e-05']
['59852.389071830556 0.2533334310028815 6.71969306392614e-05 0.03388256154458746 2.301868500670542e-05 6.7407214430455726e-06 4.579421877865582e-09 0.019058940868830445 1.2948010316271799e-05 0.23427449013405108 6.843302169631258e-05']
['59852.38927445752 0.25351386142889176 6.720520373765053e-05 0.034078891213088276 2.302037126550893e-05 6.779779989567446e-06 4.5797573483954705e-09 0.019169376307362155 1.2948958836848773e-05 0.2343444851215296 6.844132482921061e-05']
['59852.38947708449 0.25367238951514254 6.722964640255616e-05 0.03405895009805567 2.30195049251602e-05 6.775812830782192e-06 4.579584995459345e-09 0.019158159430156314 1.294847152040261e-05 0.23451423008498623 6.846523402521464e-05']
['59852.38967971146 0.2533506805440297 6.719498630461263e-05 0.03380175957401176 2.301743698200516e-05 6.724646401759713e-06 4.579173591240398e-09 0.019013489760381617 1.2947308302377902e-05 0.2343371907836481 6.84309796565408e-05']
['59852.38988233842 0.2531239667441946 6.718327728216663e-05 0.03342235056558647 2.3012432527591088e-05 6.649165377829113e-06 4.578177986668551e-09 0.01880007219314239 1.2944493296769987e-05 0.23432389455105218 6.841894951753213e-05']
['59852.390084965395 0.2536321751559223 6.721360250061267e-05 0.034170069680906974 2.3023765618466984e-05 6.7979193693885594e-06 4.580432633460311e-09 0.019220664195510172 1.2950868160387676e-05 0.23441151096041213 6.844993314253936e-05']
['59852.39028759236 0.2531356886781398 6.718687564432799e-05 0.033422154734519184 2.3012215688632146e-05 6.6491264184761514e-06 4.578134847928337e-09 0.01879996203816704 1.294437132485558e-05 0.23433572663997276 6.842245982016532e-05']
['59852.39049021933 0.25344227120812446 6.720363106083664e-05 0.03388141132020243 2.3019517314290588e-05 6.740492613174895e-06 4.579587460198523e-09 0.019058293867613863 1.2948478489288456e-05 0.23438397734051059 6.843968967601046e-05']
['59852.3906928463 0.25331829670995754 6.719434951403808e-05 0.03387834140252145 2.3019476634412356e-05 6.739881872457629e-06 4.5795793671938914e-09 0.019056567038918316 1.294845560685695e-05 0.23426172967103923 6.84305714517821e-05']
['59852.39089547326 0.2532469186552476 6.720051787295712e-05 0.03359572104115738 2.3016109051180803e-05 6.683656338045741e-06 4.578909407796923e-09 0.018897593085651025 1.2946561341289203e-05 0.2343493255695966 6.843627001055357e-05']
['59852.391098100234 0.2533915732515354 6.719862548909338e-05 0.03391305543521732 2.3017943175872303e-05 6.74678800983038e-06 4.579274295310547e-09 0.01907609368230974 1.294759303642817e-05 0.23431547956922566 6.843460698404276e-05']
['59852.3913007272 0.25369072098193574 6.722078667122725e-05 0.03416717789530324 2.3023028434222018e-05 6.7973440669220645e-06 4.5802859753146166e-09 0.01921903756610807 1.2950453494249883e-05 0.23447168341582766 6.845690912103301e-05']
['59852.39150335416 0.2537605492035381 6.72241373240827e-05 0.03417707889097516 2.30222462510217e-05 6.799313807425461e-06 4.580130364911199e-09 0.019224606876173528 1.2950013516199705e-05 0.23453594232736455 6.846011604603722e-05']
['59852.391705981136 0.2535130797670779 6.720489130975482e-05 0.0341692941646133 2.302305824045436e-05 6.797765085324076e-06 4.580291905076132e-09 0.01922022796759498 1.2950470260255576e-05 0.2342928517994829 6.844130401970526e-05']
['59852.3919086081 0.25317623866626104 6.718682444341034e-05 0.03358674723226722 2.301929358282199e-05 6.681871055491703e-06 4.579542950237082e-09 0.01889254531815031 1.2948352640337369e-05 0.23428369334811072 6.84231628535847e-05']
['59852.39211123507 0.25309084342783555 6.718437716672506e-05 0.03360456772605149 2.301609872630376e-05 6.685416330084335e-06 4.5789073537279e-09 0.018902569345903963 1.2946555533545865e-05 0.2341882740819316 6.842041972586805e-05']
['59852.39231386204 0.2530071847394445 6.718224943675238e-05 0.03344813127195798 2.3013456437408768e-05 6.654294286398397e-06 4.578381687054506e-09 0.018814573840476363 1.294506924604243e-05 0.23419261089896815 6.841804920608924e-05']
['59852.392516489 0.2536330843464509 6.721392510443884e-05 0.034121227903261185 2.3023007611002902e-05 6.788202606461406e-06 4.5802818326668e-09 0.019193190695584415 1.2950441781189132e-05 0.23443989365086645 6.845016924941152e-05']
['59852.392719115975 0.2536718875339159 6.721520707858601e-05 0.03421745660241257 2.30252358379688e-05 6.8073466978829636e-06 4.580725124336742e-09 0.01924731933885707 1.295169515885745e-05 0.23442456819505883 6.845166521060806e-05']
['59852.39292174294 0.2530112570806423 6.718141826644537e-05 0.0334308704121922 2.301358816577464e-05 6.650860347456221e-06 4.578407893580224e-09 0.01880486460685811 1.2945143343248235e-05 0.23420639247378422 6.84172470687642e-05']
['59852.393124369904 0.2531331568797707 6.718893616107473e-05 0.03402278295861287 2.3178524277558427e-05 6.7686176070074224e-06 4.611220890436158e-09 0.019137815414219737 1.3037919906126615e-05 0.23399534146555098 6.844224205807075e-05']
['59852.39332699688 0.2532948792163562 6.719517708734499e-05 0.03409094325731275 2.3243214447252424e-05 6.7821776675833055e-06 4.624090590781474e-09 0.019176155582238424 1.3074308126579487e-05 0.23411872363411776 6.845530919357822e-05']
['59852.39352962384 0.253226425025848 6.719164060143525e-05 0.03342710768800506 2.301316189365604e-05 6.650111777263878e-06 4.578323089436752e-09 0.018802748074502846 1.2944903565181523e-05 0.23442367695134517 6.84272394227934e-05']
['59852.39373225081 0.25360557654857246 6.720936283655364e-05 0.0341733446261567 2.302146363757301e-05 6.798570899044621e-06 4.579974668912588e-09 0.01922250635221314 1.2949573296134817e-05 0.23438307019635932 6.844552506517489e-05']
['59852.39393487778 0.2532896734093381 6.719529488540461e-05 0.033822632455688485 2.3016806821361062e-05 6.728798929628991e-06 4.579048224763585e-09 0.01902523075632477 1.2946953837015596e-05 0.23426444265301333 6.843121559927381e-05']
['59852.39413750474 0.2533223801404446 6.719592226983908e-05 0.0340710037218411 2.3021652183507742e-05 6.778210823041719e-06 4.5800121789344784e-09 0.01916493959353562 1.2949679353223105e-05 0.23415744054690898 6.843234735887369e-05']
['59852.394340131716 0.25373212096864817 6.721609843574222e-05 0.03422879650727661 2.302510440541113e-05 6.809602700274593e-06 4.580698976660196e-09 0.01925369803534309 1.295162122804376e-05 0.23447842293330506 6.845252647899931e-05']
['59852.39454275868 0.25309411491862743 6.719024113288555e-05 0.03348626264372753 2.3015611332214007e-05 6.661880281778395e-06 4.578810389754627e-09 0.018836022737096735 1.2946281374370378e-05 0.2342580921815307 6.842612589442482e-05']
['59852.394745385645 0.2530599189054138 6.718241989944942e-05 0.03335890463866452 2.3013218701006928e-05 6.636543211718269e-06 4.578334390900124e-09 0.018764383859248793 1.2944935519316396e-05 0.23429553504616502 6.84181912881742e-05']
['59852.39494801262 0.2535794913350611 6.72129024274419e-05 0.03408449893991375 2.302145970385218e-05 6.7808956113721744e-06 4.579973886323694e-09 0.019172530653701482 1.294957108341685e-05 0.2344069606813596 6.844900031384893e-05']
['59852.39515063958 0.25313481130113946 6.718550474233165e-05 0.03336086615091951 2.3014838494292554e-05 6.636933442182414e-06 4.578656638535367e-09 0.018765487209892222 1.294584665303956e-05 0.23436932409124725 6.842139280258686e-05']
['59852.39535326655 0.25339709625925966 6.720192489468133e-05 0.033882476629819 2.301918929112302e-05 6.740704549789145e-06 4.579522202062813e-09 0.019058893104273184 1.2948293976256697e-05 0.23433820315498646 6.843797941527757e-05']
['59852.39555589352 0.25316649565428007 6.718439414895642e-05 0.03373469831366367 2.302388978379886e-05 6.711304987916749e-06 4.580457335368223e-09 0.018975767801435815 1.2950938003386858e-05 0.23419072785284425 6.842126579017593e-05']
['59852.395758520484 0.2534527859086353 6.720316473348488e-05 0.03377861301128994 2.3016423863065287e-05 6.720041539418757e-06 4.578972037631372e-09 0.01900046981885059 1.2946738422974223e-05 0.2344523160897847 6.843890257732676e-05']
['59852.39596114746 0.25322997839775585 6.71927694393544e-05 0.033538985369457965 2.301430357086731e-05 6.672369134794991e-06 4.578550218901238e-09 0.018865679270320106 1.2945545758612862e-05 0.23436429912743575 6.842846936705933e-05']
['59852.39616377442 0.2534884442193658 6.720984849264386e-05 0.03391964235182777 2.3019952231416308e-05 6.748098435253239e-06 4.579673984211514e-09 0.01907979882290312 1.2948723130171672e-05 0.23440864539646267 6.844584110890877e-05']
['59852.396366401386 0.253153031375275 6.718719541708531e-05 0.03349017367733808 2.3014052468161662e-05 6.6626583571930416e-06 4.578500263605203e-09 0.01883822269350267 1.2945404513340934e-05 0.23431480868177235 6.842296928683844e-05']
['59852.39656902836 0.2534624568961775 6.720614700957496e-05 0.03395405323340929 2.3019521132437345e-05 6.7549442626280505e-06 4.579588219794685e-09 0.019099154943792725 1.2948480636996007e-05 0.2343633019523848 6.844216059330141e-05']
['59852.39677165532 0.25320433232341155 6.718886240637432e-05 0.033482829907221 2.301534662050418e-05 6.6611973605492115e-06 4.578757727033236e-09 0.01883409182281181 1.29461324740336e-05 0.23437024050059974 6.842474389793452e-05']
['59852.39697428229 0.25347959685294486 6.720392585300502e-05 0.03436500777910003 2.3027787364813778e-05 6.836701071794007e-06 4.581232734474004e-09 0.019330316875743766 1.295313039270775e-05 0.23414927997720109 6.844085941180667e-05']
['59852.39717690926 0.2534192512067903 6.720126562627912e-05 0.0341209986352649 2.3029614452198106e-05 6.78815699504278e-06 4.58159622195985e-09 0.019193061732336505 1.2954158129361434e-05 0.2342261894744538 6.843844178978818e-05']
['59852.397379536225 0.2532982234546529 6.719761945055693e-05 0.033631842657000685 2.3014944165787e-05 6.690842505188152e-06 4.578677661211223e-09 0.018917911494562883 1.2945906093255186e-05 0.23438031196009004 6.843329996717423e-05']
['59852.3975821632 0.25335893898516737 6.719674755856251e-05 0.03401864710592249 2.3020486061830704e-05 6.767794805257955e-06 4.579780186398044e-09 0.0191354889970814 1.294902340977977e-05 0.23422344998808597 6.843303361474048e-05']
['59852.39778479016 0.2533109222031982 6.719869458281553e-05 0.033728520695057385 2.3017370026030517e-05 6.71007598974459e-06 4.57916027077248e-09 0.018972292890969775 1.2947270639642165e-05 0.2343386293122284 6.843461383430655e-05']
['59852.39798741713 0.2531306731580675 6.718660600830889e-05 0.03347542399817379 2.3015147979667944e-05 6.659724001758022e-06 4.5787182086945015e-09 0.018829925998972756 1.2946020738563217e-05 0.2343007471590947 6.842250711483055e-05']
['59852.3981900441 0.2530957031842826 6.71855028677879e-05 0.033478429521053975 2.3015210120392198e-05 6.660321931536718e-06 4.578730571198792e-09 0.01883161660559286 1.294605569272061e-05 0.23426408657868975 6.842143051410545e-05']
['59852.398392671064 0.2536102211123171 6.721093575433527e-05 0.03412619927443736 2.3021816925181675e-05 6.789191629332197e-06 4.580044953249153e-09 0.019195987091871012 1.2949772020414691e-05 0.23441423402044612 6.844710717301424e-05']
['59852.39859529803 0.25321299560131416 6.719009913122051e-05 0.03368339954527181 2.3018253042033167e-05 6.701099422211635e-06 4.579335941224545e-09 0.01894691224421539 1.2947767336143658e-05 0.23426608335709878 6.842626761890604e-05']
['59852.398797925 0.25342731158289905 6.72058421649874e-05 0.03399296904807202 2.3019656932594468e-05 6.762686317963078e-06 4.579615236377533e-09 0.019121045089540514 1.2948557024584388e-05 0.23430626649335853 6.844187570577031e-05']
['59852.399000551966 0.25325228386575493 6.71847403123863e-05 0.0338333003539354 2.3019207376565194e-05 6.730921240551989e-06 4.5795258000472135e-09 0.01903123144908866 1.2948304149317921e-05 0.23422105241666627 6.842110720520408e-05']
['59852.39920317894 0.25310566686375613 6.718604908590692e-05 0.03351055073726408 2.301594795311075e-05 6.666712244459171e-06 4.578877358354208e-09 0.018849684789711045 1.2946470723624795e-05 0.23425598207404508 6.842204539453324e-05']
['59852.3994058059 0.2531212482196029 6.71925371838105e-05 0.03357163170305643 2.302690977091399e-05 6.678863916502519e-06 4.58105814271503e-09 0.01888404283296924 1.2952636746139118e-05 0.23423720538663367 6.842958316309686e-05']
['59852.39960843287 0.2533622445782577 6.719760225108639e-05 0.03366167300298915 2.3016833801532804e-05 6.696777063960909e-06 4.579053592298208e-09 0.018934691064181393 1.29469690133622e-05 0.2344275535140763 6.84334841647579e-05']
['59852.39981105984 0.2532717593566026 6.71947188677343e-05 0.03361855644630467 2.3014438087033653e-05 6.688199297554113e-06 4.578576980042237e-09 0.018910438001046373 1.2945621423956429e-05 0.23436132135555626 6.843039790740842e-05']
['59852.400013686805 0.2534745028970543 6.72182202247235e-05 0.03339881438646466 2.3012740992716062e-05 6.644483003768197e-06 4.578239353855315e-09 0.01878683309238637 1.2944666808402785e-05 0.23468766980466793 6.84532945077152e-05']
['59852.40021631377 0.25312892903187323 6.718662772169739e-05 0.03365287107773074 2.301556136736063e-05 6.695025976568908e-06 4.578800449562882e-09 0.01892973998122354 1.2946253269140353e-05 0.23419918905064968 6.842257243280674e-05']
['59852.40041894074 0.25360322008304326 6.721609486834979e-05 0.0339761885481253 2.302081418304492e-05 6.759347943570485e-06 4.579845464039514e-09 0.01911160605832048 1.2949207977962766e-05 0.23449161402472277 6.845206641590546e-05']
['59852.40062156771 0.25325594215079716 6.719209599926362e-05 0.03369166167385663 2.301985533596031e-05 6.702743120467554e-06 4.579654707473033e-09 0.018951559691544353 1.2948668626477673e-05 0.2343043824592528 6.842839895812693e-05']
['59852.40082419468 0.2533470759336197 6.720012746642846e-05 0.033946972454218474 2.3020106702720376e-05 6.7535355863666e-06 4.5797047153010245e-09 0.01909517200549789 1.294881002028021e-05 0.2342519039281218 6.843631208974912e-05']
['59852.401026821644 0.25319774249631366 6.71876995493685e-05 0.033712780426445085 2.3016089480327503e-05 6.706944562800538e-06 4.578905514299368e-09 0.01896343898987536 1.294655033268422e-05 0.2342343035064383 6.842368110714987e-05']
['59852.40122944861 0.2532105680014012 6.719243347573475e-05 0.033781597900251745 2.3017494502287436e-05 6.7206353642098215e-06 4.579185034536963e-09 0.019002148818891604 1.2947340657536681e-05 0.23420841918250956 6.842847906020812e-05']
['59852.40143207558 0.2531448328042567 6.71935307162064e-05 0.03344609055328077 2.301339762890563e-05 6.6538882983172245e-06 4.5783699874745435e-09 0.018813425936220433 1.2945036166259417e-05 0.23433140686803627 6.842912049307326e-05']
['59852.401634702546 0.2532272849089305 6.718953576487308e-05 0.03354431740127599 2.301500455727345e-05 6.673429908820693e-06 4.57868967571571e-09 0.01886867853821774 1.2945940063466316e-05 0.23435860637071274 6.842536869046466e-05']
['59852.40183732951 0.2535951548636348 6.721033286586969e-05 0.034074780774645694 2.3020707436505033e-05 6.7789622438219304e-06 4.579824227490163e-09 0.0191670641857382 1.294914793303408e-05 0.2344280906778966 6.844639710118133e-05']
['59852.40203995648 0.2534418532621634 6.720497204980419e-05 0.034072430643046346 2.3020612435243025e-05 6.77849469999574e-06 4.579805327589602e-09 0.01916574223671357 1.2949094494824201e-05 0.23427611102544982 6.844112299232713e-05']
['59852.40224258345 0.25339049776539707 6.719602858003404e-05 0.033732976963524536 2.3016356479928487e-05 6.7109625361874546e-06 4.5789586321822435e-09 0.01897479954198255 1.2946700519959773e-05 0.23441569822341451 6.843188811718027e-05']
['59852.40244521041 0.25326248727990364 6.719392756092011e-05 0.033596111192665735 2.3018693531944268e-05 6.6837339562221285e-06 4.579423573907962e-09 0.018897812545874474 1.2948015111718651e-05 0.23436467473402917 6.84300737716647e-05']
['59852.402647837385 0.25348565712939514 6.720385450350407e-05 0.034085949218865874 2.302109902151058e-05 6.78118413520229e-06 4.5799021308517545e-09 0.01917334643561205 1.29493681995997e-05 0.23431231069378308 6.844007741737985e-05']
['59852.40285046435 0.2533585836021892 6.72004724095741e-05 0.03362542201417521 2.3015122451642117e-05 6.689565158883776e-06 4.57871313005513e-09 0.018914299882973558 1.294600637904869e-05 0.23444428371921566 6.843612038416774e-05']
['59852.40305309132 0.2536610645923518 6.72106513303057e-05 0.03427727737055838 2.302615167676764e-05 6.819247661570413e-06 4.58090732467663e-09 0.019280968520939086 1.2952210318181796e-05 0.23438009607141275 6.8447289240483e-05']
['59852.40325571829 0.25308212246406814 6.71867679527469e-05 0.03343429931826091 2.3013136805226945e-05 6.651542506644013e-06 4.57831809825237e-09 0.018806793366521763 1.2944889452940156e-05 0.23427532909754636 6.842245209640692e-05']
['59852.40345834525 0.2532861193478937 6.71996754315582e-05 0.033557493287124235 2.3025602545141762e-05 6.676051168023647e-06 4.580798078410797e-09 0.01887608997400738 1.295190143164224e-05 0.2344100293738863 6.84364532161168e-05']
['59852.403660972224 0.2534461719246952 6.720666793616057e-05 0.03395144859233274 2.301892297388904e-05 6.754426085750159e-06 4.5794692199325405e-09 0.019097689833187166 1.2948144172812584e-05 0.23434848209150805 6.844260845848362e-05']
['59852.40386359919 0.2536550955283325 6.721461479669163e-05 0.034204358177930265 2.3022882435406712e-05 6.8047408491291205e-06 4.58025692977319e-09 0.019239951475085774 1.2950371369916276e-05 0.2344151440532467 6.845083316429673e-05']
['59852.404066226154 0.2537217941144998 6.721693911320048e-05 0.03418897758074949 2.3022961167314902e-05 6.801680976542839e-06 4.5802725929886496e-09 0.01923129988917159 1.2950415656614633e-05 0.2344904942253282 6.845312388362412e-05']
['59852.404268853126 0.2531896413951439 6.719320087529783e-05 0.03332644724336872 2.3011140683692405e-05 6.630086018091752e-06 4.5779209824908274e-09 0.018746126574394905 1.2943766634576975e-05 0.234443514820749 6.842855645531706e-05']
['59852.40447148009 0.2531666759074377 6.718995842851178e-05 0.033592614533130574 2.301339634567647e-05 6.683038317910466e-06 4.578369732184214e-09 0.018895845674885947 1.2945035444443015e-05 0.23427083023255174 6.842561257513905e-05']
['59852.40467410706 0.25351626133634336 6.720971488019836e-05 0.03417550516100097 2.302432096119602e-05 6.799000723794856e-06 4.580543115385857e-09 0.019223721653063047 1.2951180540672761e-05 0.23429253968328032 6.844617485056895e-05']
['59852.40487673403 0.2536629165395463 6.721330318822051e-05 0.03415876100815286 2.302311927702422e-05 6.795669580427778e-06 4.580304047915886e-09 0.019214303067085985 1.2950504593326124e-05 0.23444861347246032 6.844957044929804e-05']
['59852.40507936099 0.2533145427928626 6.719683341558516e-05 0.03374476432888466 2.3016824311826443e-05 6.713307558016322e-06 4.579051704381113e-09 0.01898142993499762 1.2946963675402373e-05 0.23433311285786496 6.843272820437668e-05']
['59852.405281987965 0.2530674484464098 6.718214456185608e-05 0.033352593646758896 2.301262822589414e-05 6.635287679771277e-06 4.578216919608908e-09 0.018760833926301877 1.2944603377065454e-05 0.23430661452010795 6.8417858081934e-05']
['59852.40548461493 0.25366589568777553 6.721817047093594e-05 0.034216027383127026 2.3023623152825764e-05 6.807062363740393e-06 4.5804042908215354e-09 0.01924651540300895 1.2950788023464492e-05 0.23441938028476658 6.845440345141075e-05']
['59852.405687241895 0.25356808141513293 6.720556942135427e-05 0.03422163571392081 2.3024896674975364e-05 6.8081781057007995e-06 4.580657650003093e-09 0.019249670089080455 1.295150437967364e-05 0.23431841132605247 6.844216556294207e-05']
['59852.40588986887 0.25324169832399035 6.718842425158065e-05 0.03374325499646482 2.301632838414413e-05 6.713007285872089e-06 4.578953042703543e-09 0.01898058093551146 1.2946684716081073e-05 0.23426111738847888 6.842441814548369e-05']
['59852.40609249583 0.2531929074201017 6.71894848436823e-05 0.03361937750734646 2.3014747284300504e-05 6.6883626424583405e-06 4.578638492883999e-09 0.018910899847882384 1.2945795347419032e-05 0.23428200757221931 6.842529130911077e-05']
['59852.406295122804 0.2531930137445387 6.719187675530353e-05 0.03374895555082414 2.3016542607847256e-05 6.714141375127902e-06 4.578995661155143e-09 0.01898378749733858 1.294680521691408e-05 0.2342092262472001 6.842783108666103e-05']
['59852.40649774977 0.2531922323403881 6.718935709321731e-05 0.03349354634972512 2.301424233164835e-05 6.663329329045326e-06 4.578538035745727e-09 0.01884011982172038 1.2945511311552194e-05 0.23435211251866775 6.842511212791249e-05']
['59852.406700376734 0.2537178586160955 6.724063648832041e-05 0.0337304375065927 2.301712339006533e-05 6.710457327283117e-06 4.579111204106225e-09 0.018973371097458395 1.2947131906911746e-05 0.23474448751863713 6.847577250363385e-05']
['59852.406903003706 0.25321036504185934 6.718824789423383e-05 0.03379790472913703 2.301574950042521e-05 6.723879504738881e-06 4.578837877446866e-09 0.01901132141013958 1.294635909398918e-05 0.23419904363171976 6.84241833629568e-05']
['59852.40710563067 0.2536108235879976 6.721427674647808e-05 0.034144391319071474 2.3023346284324575e-05 6.7928108216177815e-06 4.580349209583347e-09 0.0192062201169777 1.2950632284932573e-05 0.23440460347101988 6.84505505831157e-05']
['59852.407308257636 0.2535208436269995 6.721371062848352e-05 0.034114454323322566 2.3022470615557447e-05 6.786855045549332e-06 4.580175000817348e-09 0.019189380556868942 1.2950139721251063e-05 0.23433146307013056 6.84499014991946e-05']
['59852.40751088461 0.2531695782915646 6.719051765773256e-05 0.03361930249507836 2.3016628654121528e-05 6.6883477192417635e-06 4.579012779517499e-09 0.018910857653481574 1.2946853617943359e-05 0.23425872063808303 6.842650569566243e-05']
['59852.40771351157 0.2534295457491256 6.720404563001172e-05 0.03386207724365032 2.301829386193763e-05 6.736646220858163e-06 4.579344062086509e-09 0.019047418449553304 1.2947790297339916e-05 0.23438212729957228 6.843996655920126e-05']
['59852.407916138545 0.2531800645975064 6.718855440695231e-05 0.03387138871563275 2.3039979080535105e-05 6.738498679349995e-06 4.583658199251279e-09 0.01905265615254342 1.2959988232800995e-05 0.234127408444963 6.842706436995766e-05']
['59852.40811876551 0.25343586694835835 6.720426786854428e-05 0.03388899689938138 2.301922503624814e-05 6.742001716203076e-06 4.579529313329507e-09 0.019062560755902024 1.294831408288958e-05 0.23437330619245633 6.844028387825558e-05']
['59852.408321392475 0.2531206538165287 6.718226997179463e-05 0.033870107193519725 2.309080291199575e-05 6.738243728626283e-06 4.5937692792560685e-09 0.019051935296354842 1.2988576637997609e-05 0.23406871852017386 6.842631454085655e-05']
['59852.40852401945 0.25341977649055225 6.720409607970051e-05 0.03387402123104771 2.3018689502541e-05 6.739022401651316e-06 4.579422772283652e-09 0.01905413694246434 1.2948012845179312e-05 0.23436563954808792 6.844005820079748e-05']
['59852.40872664641 0.253240462352907 6.718863970006253e-05 0.033814970303388675 2.3018578530549112e-05 6.727274592862444e-06 4.5794006951073346e-09 0.019020920795656128 1.2947950423433875e-05 0.23421954155725086 6.84248691990896e-05']
['59852.40892927338 0.2532494343117645 6.719238917065026e-05 0.033750880205268216 2.301679821558882e-05 6.71452427296355e-06 4.5790465126995955e-09 0.018984870115463372 1.294694899626871e-05 0.23426456419630112 6.842836145029415e-05']
['59852.40913190035 0.253305489096086 6.718911260283812e-05 0.03402185483557371 2.302050642761723e-05 6.7684329627955725e-06 4.579784238042539e-09 0.01913729334501021 1.294903486553469e-05 0.2341681957510758 6.842553877249116e-05']
['59852.409334527314 0.2529962121325937 6.717802827451385e-05 0.03341073646402083 2.301216867656063e-05 6.6468548257369345e-06 4.578125495173879e-09 0.018793539261011717 1.2944344880565353e-05 0.234202672871582 6.841376723466119e-05']
['59852.40953715428 0.25347166130359416 6.720675317230407e-05 0.034026031313239856 2.3019987596290623e-05 6.769263846627172e-06 4.579681019829713e-09 0.019139642613697418 1.2948743022913476e-05 0.23433201868989675 6.844280544978013e-05']
['59852.40973978125 0.2534592690917228 6.720725678866713e-05 0.03399698313307621 2.301955311373493e-05 6.7634848948010875e-06 4.579594582271681e-09 0.019123303012355368 1.2948498626475896e-05 0.2343359660793674 6.844325373429942e-05']
['59852.409942408216 0.2531280117138367 6.718504881983683e-05 0.03363902875108071 2.301522542587332e-05 6.692272133181102e-06 4.578733616127513e-09 0.0189219536724829 1.294606430205374e-05 0.2342060580413538 6.842098629687216e-05']
['59852.41014503519 0.2531556823365042 6.718903557360298e-05 0.03360739421668005 2.3015017331376357e-05 6.685978642528257e-06 4.578692217042736e-09 0.018904159246882525 1.29459472488992e-05 0.2342515230896217 6.8424878892711e-05']
['59852.41034766215 0.2533734297876447 6.719930653235828e-05 0.03400822759805666 2.3019690560278513e-05 6.765721910031165e-06 4.5796219263927084e-09 0.01912962802390687 1.2948575940156663e-05 0.23424380176373785 6.84354616942697e-05']
['59852.41055028912 0.25316034176789504 6.718751029567063e-05 0.033746459693060275 2.301636774375142e-05 6.713644840002435e-06 4.578960873048616e-09 0.018982383577346405 1.2946706855860173e-05 0.23417795819054862 6.842352488831911e-05']
['59852.41075291609 0.25338052165954084 6.720534467311503e-05 0.03373746232234917 2.301565490937266e-05 6.711854869973057e-06 4.578819059154884e-09 0.018977322556321407 1.294630588652212e-05 0.23440319910321944 6.844096133705011e-05']
['59852.410955543055 0.2532523230714722 6.719583412307509e-05 0.033564538868998975 2.3015152972534924e-05 6.677452842001551e-06 4.578719201993827e-09 0.018880053113811922 1.2946023547050893e-05 0.2343722699576603 6.843156909772433e-05']
['59852.41115817002 0.2533973136922212 6.720159394715982e-05 0.03373889502876819 2.3017465097831284e-05 6.712139897858789e-06 4.579179184706282e-09 0.018978128453682103 1.2947324117530097e-05 0.23441918523853908 6.843747095592679e-05']
['59852.41136079699 0.2533527359765956 6.719681491540044e-05 0.03382893553577168 2.3017411955425468e-05 6.7300528875689224e-06 4.579168612360565e-09 0.01902877623887157 1.2947294224926825e-05 0.23432395973772402 6.843277257660548e-05']
['59852.41156342396 0.2532898934819642 6.719881126369616e-05 0.033607914109074294 2.3013983960477016e-05 6.686082071833782e-06 4.578486634434389e-09 0.01890445168635429 1.294536597776832e-05 0.23438544179560988 6.84343680876226e-05']
['59852.41176605093 0.25316849306845435 6.718498888827778e-05 0.03365176765364554 2.3015751138977195e-05 6.69480645732205e-06 4.578838203426426e-09 0.018929119305175615 1.294636001567467e-05 0.23423937376327875 6.842098340109902e-05']
['59852.411968677894 0.25321609338536366 6.719349013745852e-05 0.033481140561250955 2.3015281335389103e-05 6.660861275847055e-06 4.578744738972267e-09 0.018833141565703662 1.2946095751156369e-05 0.23438295181966 6.842928110137389e-05']
['59852.41217130486 0.2533254082642219 6.719448916327905e-05 0.03391492438579493 2.3019155940189463e-05 6.7471598257339064e-06 4.579515567105398e-09 0.019077144967009647 1.2948275216356573e-05 0.23424826329721224 6.84306744449632e-05']
['59852.41237393183 0.25306738614281377 6.718674035196206e-05 0.033609775717097015 2.301370633904862e-05 6.686452426982426e-06 4.578431403406092e-09 0.01890549884086707 1.2945209815714847e-05 0.2341618873019467 6.842248560447688e-05']
['59852.412576558796 0.25343210995849363 6.72068373961516e-05 0.033989552221476954 2.3019559991442493e-05 6.762006561910212e-06 4.579595950548126e-09 0.019119123124580785 1.2948502495186401e-05 0.23431298683391286 6.844284264742816e-05']
['59852.41277918576 0.2531440093321903 6.726050128814044e-05 0.03352034964169829 2.304547578492225e-05 6.668661674556157e-06 4.584751733843691e-09 0.018855196673455286 1.2963080129018764e-05 0.234288812658735 6.84982954529768e-05']
['59852.41298181273 0.25314939306180806 6.726433046629281e-05 0.033789211922017844 2.3049083836417432e-05 6.722150125710927e-06 4.585469532881676e-09 0.019006431706135037 1.2965109657984804e-05 0.23414296135567303 6.85024395297147e-05']
['59852.4131844397 0.2532874104890668 6.726878378481619e-05 0.033843162916095 2.304882950031945e-05 6.732883334951053e-06 4.5854189343226755e-09 0.019036779140303436 1.296496659392969e-05 0.23425063134876334 6.850678528926943e-05']
['59852.41338706667 0.2532616455868688 6.727225944209967e-05 0.033684529398703957 2.3047034247374408e-05 6.7013241994100045e-06 4.585061780097296e-09 0.018947547786770973 1.2963956764148103e-05 0.23431409780009785 6.85100070458898e-05']
['59852.413589693635 0.25316912303118255 6.726069249664201e-05 0.03355320543186538 2.304652674760867e-05 6.67519812632401e-06 4.584960816226877e-09 0.018873678055424274 1.2963671295529875e-05 0.23429544497575827 6.849859508476346e-05']
['59852.4137923206 0.25322201938186345 6.726198778059807e-05 0.03359595979617355 2.3049459243262e-05 6.683703836847007e-06 4.585544217700405e-09 0.01889772738534762 1.2965320824334874e-05 0.23432429199651583 6.850017915505956e-05']
['59852.41399494757 0.253174527923657 6.726446414844795e-05 0.033874448083957336 2.3049546021026325e-05 6.739107321339491e-06 4.585561481588084e-09 0.019054377047226 1.2965369636827308e-05 0.234120150876431 6.850262000097079e-05']
['59852.41419757454 0.253599066168989 6.729260625082547e-05 0.0340975316281554 2.3053165222970743e-05 6.783488382316468e-06 4.586281498937462e-09 0.019179861540837412 1.2967405437921042e-05 0.23441920462815155 6.853063884001126e-05']
['59852.4144002015 0.25346191170242405 6.728505972007206e-05 0.034239531980265595 2.305330014036462e-05 6.811738454765377e-06 4.5863083399001425e-09 0.019259736738899396 1.2967481328955098e-05 0.23420217496352466 6.85232430168805e-05']
['59852.414602828474 0.2533134514353197 6.727764662818082e-05 0.03375983963115489 2.304780702378549e-05 6.716306694109962e-06 4.585215519079456e-09 0.018989909792524625 1.2964391450879337e-05 0.23432354164279506 6.851537916057973e-05']
['59852.41480545544 0.25550010261860406 6.801197480000504e-05 0.0339422029075633 2.3052215221755598e-05 6.752586715208502e-06 4.5860925022007945e-09 0.019092489135504355 1.2966871062237523e-05 0.23640761348309972 6.923704544058198e-05']
['59852.415008082404 0.25322389480824137 6.726735944857971e-05 0.0336729391627518 2.3049904821949996e-05 6.69901839523077e-06 4.58563286276382e-09 0.018941028279047884 1.2965571462346874e-05 0.23428286652919347 6.850550116983051e-05']
['59852.415210709376 0.2530987754740261 6.725755840355978e-05 0.03336919765478991 2.304417518253243e-05 6.63859094221287e-06 4.584492987219519e-09 0.018770173680819326 1.296234854017449e-05 0.23432860179320678 6.849526729698351e-05']
['59852.41541333634 0.2535576633373531 6.728672260826472e-05 0.03528774271268187 2.4182109713759894e-05 7.020273354097909e-06 4.810877869169281e-09 0.019849355275883548 1.3602436713989938e-05 0.23370830806146953 6.864786467123114e-05']
['59852.41561596331 0.25317804490435847 6.726666974789319e-05 0.033702028559215516 2.3052347402953304e-05 6.704805546779221e-06 4.586118798814543e-09 0.018957391064558727 1.2966945414161233e-05 0.23422065383979973 6.850508398904395e-05']
['59852.41581859028 0.25364163285934604 6.729058253244641e-05 0.03423956055579721 2.3056338306082286e-05 6.811744139686761e-06 4.586912763765016e-09 0.01925975281263593 1.2969190297171286e-05 0.23438188004671012 6.852898944622067e-05']
['59852.41602121724 0.25357565747053534 6.728976054925011e-05 0.034073040319822015 2.305120268502491e-05 6.77861599133641e-06 4.585891064418606e-09 0.019166085179899883 1.2966301510326511e-05 0.23440957229063547 6.852763566351982e-05']
['59852.416223844215 0.2531640216168569 6.726449759850012e-05 0.03346609257016883 2.3045150001944975e-05 6.657867573141652e-06 4.58468692137968e-09 0.018824677070719966 1.2962896876094048e-05 0.23433934454613695 6.85021848746365e-05']
['59852.41642647118 0.2536043431477749 6.729100924766037e-05 0.03422023877494659 2.306394320395082e-05 6.8079001935221186e-06 4.588425710124374e-09 0.019248884310907457 1.2973468052222337e-05 0.23435545883686745 6.853021814404757e-05']
['59852.416629098145 0.253496407353726 6.728341092101081e-05 0.03412031728856847 2.3053970479889916e-05 6.78802144542441e-06 4.586441699711393e-09 0.019192678474819765 1.2967858394938077e-05 0.23430372887890627 6.852169537100468e-05']
['59852.41683172512 0.25325386981138254 6.726855986352795e-05 0.03358576300232392 2.3048160368100323e-05 6.681675249165935e-06 4.585285814697355e-09 0.018891991688807206 1.296459020705643e-05 0.23436187812257533 6.850649418376296e-05']
['59852.41703435208 0.25318698451483657 6.726284655596872e-05 0.03384567717704842 2.3048063315609056e-05 6.733383531274753e-06 4.5852665067177e-09 0.019038193412089736 1.2964535615030094e-05 0.23414879110274683 6.850087379388074e-05']
['59852.417236979054 0.25329636365247943 6.727100644305879e-05 0.0339030142160994 2.305092322764532e-05 6.7447903727587725e-06 4.585835468139424e-09 0.01907044549655591 1.2966144315550493e-05 0.23422591815592353 6.850919067011184e-05']
['59852.41743960602 0.25362662657835355 6.729265255769079e-05 0.034065342587600494 2.3051238614258045e-05 6.777084576169344e-06 4.585898212312424e-09 0.019161755205525276 1.296632172052015e-05 0.2344648713728283 6.853047925711684e-05']
['59852.417642232984 0.25349512873716923 6.728372031753923e-05 0.03418857403633721 2.305768132963239e-05 6.801600693932874e-06 4.587179949810876e-09 0.01923107289543968 1.296994574791822e-05 0.23426405584172955 6.852239424066254e-05']
['59852.417844859956 0.2530655454250029 6.726087763006125e-05 0.03344240130285458 2.30467659802656e-05 6.653154345265183e-06 4.585008410051751e-09 0.018811350732855697 1.2963805863899399e-05 0.23425419469214723 6.849880234020845e-05']
['59852.41804748692 0.2533003417756842 6.727817569565152e-05 0.033484875141813135 2.3046319665297443e-05 6.661604247043113e-06 4.584919618510053e-09 0.01883524226726989 1.296355481172981e-05 0.23446509950841432 6.851574036885012e-05']
['59852.418250113886 0.25325713216623336 6.727035450046597e-05 0.033748285243026296 2.304809131519164e-05 6.714008021628627e-06 4.585272077057666e-09 0.018983410449202293 1.2964551364795298e-05 0.23427372171703106 6.850824904132916e-05']
['59852.41845274086 0.25332639373039556 6.727434953799364e-05 0.03375546044706266 2.3047024059461313e-05 6.715435483116227e-06 4.585059753276385e-09 0.018987446501472743 1.2963951033446987e-05 0.23433894722892282 6.851205829748333e-05']
['59852.41865536782 0.2535084873273876 6.728319359503476e-05 0.034305416063953216 2.3053851805481298e-05 6.824845676752833e-06 4.586418090187955e-09 0.019296796535973684 1.2967791640583229e-05 0.23421169079141393 6.852146933903642e-05']
['59852.418857994795 0.25355735391645584 6.728927978397415e-05 0.03391103823609437 2.3051474968450543e-05 6.746386700815858e-06 4.5859452334849946e-09 0.019074959007803084 1.2966454669753428e-05 0.23448239490865275 6.852719256287041e-05']
['59852.41906062176 0.2533874911428454 6.727607193754286e-05 0.03374903633616885 2.3047684359825446e-05 6.714157446861577e-06 4.585191115859981e-09 0.018983832939094978 1.2964322452401812e-05 0.23440365820375045 6.851381986136295e-05']
['59852.419263248725 0.25319166842012875 6.726571931425521e-05 0.03351570555565574 2.3046198013077715e-05 6.667737762993887e-06 4.584895416569919e-09 0.018852584375056353 1.2963486382356214e-05 0.2343390840450724 6.850349607173128e-05']
['59852.4194658757 0.253540055285171 6.729063350400814e-05 0.033987482422482174 2.304965465013223e-05 6.7615947884836795e-06 4.585583092662044e-09 0.019117958862646223 1.2965430740699377e-05 0.23442209642252476 6.85283280962159e-05']
['59852.41966850266 0.25310640399963613 6.726124443332687e-05 0.03346722135767605 2.304569521900124e-05 6.658092138280995e-06 4.584795388866634e-09 0.018825312013692776 1.2963203560688199e-05 0.23428109198594335 6.849904852825026e-05']
['59852.41987112963 0.25342318440816897 6.727468701483282e-05 0.03399486508976746 2.3050991629840542e-05 6.7630635234732505e-06 4.585849076323784e-09 0.019122111612994198 1.2966182791785305e-05 0.23430107279517476 6.851281200719838e-05']
['59852.4200737566 0.2533193412511322 6.728311326576013e-05 0.033362275999750585 2.3043608349855347e-05 6.637213922695512e-06 4.58438021944144e-09 0.018766280249859702 1.296202969679363e-05 0.2345530610012725 6.852030023718276e-05']
['59852.420276383564 0.25359898328835423 6.728979400614642e-05 0.03419488046936898 2.3054951574277962e-05 6.802855318920729e-06 4.586636882238265e-09 0.01923462026402005 1.2968410260531355e-05 0.23436436302433417 6.852806754954553e-05']
['59852.420479010536 0.25328363372670154 6.72693697569314e-05 0.03407508233280845 2.3052245199427943e-05 6.779022236912221e-06 4.586098466069215e-09 0.01916723381220475 1.2966887924678217e-05 0.2341163999144968 6.850772430862028e-05']
['59852.4206816375 0.2536132100859584 6.729058327124679e-05 0.03405367973486187 2.3052028269389578e-05 6.774764325339463e-06 4.586055309209326e-09 0.0191551948508598 1.2966765901531637e-05 0.23445801523509857 6.852853139335267e-05']
['59852.420884264466 0.2531734175229621 6.7265046489505e-05 0.03367427107801908 2.305054253528043e-05 6.6992833713539805e-06 4.585759731799837e-09 0.018941777481385733 1.296593017609524e-05 0.23423164004157634 6.850329791014915e-05']
['59852.42108689144 0.2531936322259836 6.72646277710069e-05 0.0343705096195494 2.3360663838024816e-05 6.837795628173532e-06 4.647456404662171e-09 0.019333411660996537 1.3140373408888958e-05 0.2338602205649871 6.853611867108574e-05']
['59852.4212895184 0.25327522554347526 6.727514250847131e-05 0.0336503166208653 2.3047979836668303e-05 6.694517783522596e-06 4.585249899110119e-09 0.01892830309923673 1.296448865812592e-05 0.23434692244423852 6.851293867366805e-05']
['59852.42149214537 0.253578365185381 6.728558917877629e-05 0.034135676308214485 2.3053517281804e-05 6.7910770252965455e-06 4.586351538816927e-09 0.019201317923370646 1.296760347101475e-05 0.23437704726201036 6.85237860229317e-05']
['59852.42169477234 0.25318631230956234 6.726684728429543e-05 0.033433956680185443 2.304511264465807e-05 6.65147434096476e-06 4.584679489383591e-09 0.01880660063260431 1.2962875862620164e-05 0.23437971167695804 6.850448813178902e-05']
['59852.421897399305 0.25325485844544937 6.727124837318428e-05 0.03354179830583183 2.3046253786601773e-05 6.67292875070562e-06 4.584906512359978e-09 0.018867261547030403 1.2963517754963495e-05 0.23438759689841898 6.85089311715626e-05']
['59852.42210002627 0.253069299072105 6.726147831468595e-05 0.03338387781670054 2.304448586623783e-05 6.641511467629702e-06 4.584554795778835e-09 0.018778431271894054 1.2962523299758778e-05 0.23429086780021097 6.849914945000235e-05']
['59852.42230265324 0.25317656279696976 6.726828485522497e-05 0.03351245026134067 2.3047020811422503e-05 6.66709014276706e-06 4.5850591070995944e-09 0.01885075327200413 1.2963949206425155e-05 0.23432580952496562 6.850610284048028e-05']
['59852.42250528021 0.25317164951419546 6.726391729321778e-05 0.033514637794563165 2.3046395279282775e-05 6.667525338673981e-06 4.584934661434469e-09 0.01885198375944178 1.296359734459656e-05 0.2343196657547537 6.850174761085788e-05']
['59852.42270790718 0.25340442278853414 6.728094572379452e-05 0.03379006430369745 2.3049532952341604e-05 6.722319701658064e-06 4.5855588816558675e-09 0.019006911170829813 1.296536228569215e-05 0.23439751161770433 6.851880235882288e-05']
['59852.422910534144 0.2534948013968683 6.7280373813452e-05 0.034096665085052616 2.305312254109069e-05 6.7833159890437046e-06 4.5862730076472226e-09 0.019179374110342096 1.2967381429363512e-05 0.2343154272865262 6.851862288175705e-05']
['59852.42311316111 0.2531691958100592 6.726514780871724e-05 0.03344795017960248 2.304486839971481e-05 6.6542582592189795e-06 4.584630898396035e-09 0.018814471976026394 1.296273847483958e-05 0.2343547238340328 6.850279336272109e-05']
['59852.42331578808 0.25310196703285276 6.725705416314856e-05 0.03333591578050825 2.3043765181914778e-05 6.631969723703758e-06 4.584411420188307e-09 0.01875145262653589 1.2962117914827061e-05 0.23435051440631688 6.849472852375269e-05']
['59852.423518415046 0.2535908093527328 6.728679613909353e-05 0.034136245572863336 2.305436401024671e-05 6.791190276900035e-06 4.586519990088318e-09 0.019201638134735625 1.2968079755763771e-05 0.23438917121799718 6.852506130763971e-05']
['59852.42372104201 0.25340254741480583 6.727978694413566e-05 0.03379543411913764 2.305150723195984e-05 6.7233879924965616e-06 4.585951652106228e-09 0.019009931692014922 1.2966472817977409e-05 0.2343926157227909 6.851787466484665e-05']
['59852.42392366898 0.25320286255681757 6.726777009562001e-05 0.03358853162917335 2.3045465946945748e-05 6.682226049976764e-06 4.584749776640453e-09 0.01889354904141001 1.2963074595156984e-05 0.23430931351540757 6.850543187658036e-05']
['59852.42412629595 0.2535246610470228 6.72868661662244e-05 0.03392109547623105 2.3050352207410177e-05 6.748387525167877e-06 4.585721867273139e-09 0.019080616205379965 1.2965823116668224e-05 0.23444404484164286 6.85247030461579e-05']
['59852.42432892292 0.2532580202620418 6.727102288026162e-05 0.03416179786621132 2.3185156688694625e-05 6.796273744142117e-06 4.6125403667073365e-09 0.019216011299743863 1.3041650637390725e-05 0.23404200896229793 6.852353734815823e-05']
['59852.424531549885 0.2533172879591921 6.727018668932826e-05 0.03371429323240888 2.304892957334167e-05 6.707245525984385e-06 4.585438843217871e-09 0.018964289943229996 1.296502288500469e-05 0.23435299801596213 6.850817349503468e-05']
['59852.42473417685 0.253344009090705 6.727598880327907e-05 0.033536872865311984 2.3046679140357967e-05 6.671948865448572e-06 4.584991133801055e-09 0.018864490986737988 1.2963757016451357e-05 0.234479518103967 6.851363123817423e-05']
['59852.42493680382 0.2530507615357788 6.725606340832061e-05 0.03345535524548171 2.3050047332384344e-05 6.65573145026723e-06 4.5856612143139056e-09 0.018818637325583462 1.2965651624466193e-05 0.23423212421019535 6.849442449740756e-05']
['59852.42513943079 0.2534687608795686 6.727860313903504e-05 0.034123166289794116 2.3054348974488053e-05 6.78858823620933e-06 4.586516998819177e-09 0.01919428103800919 1.2968071298149529e-05 0.2342744798415594 6.851701477394988e-05']
['59852.42534205775 0.2532513857727182 6.726807233680994e-05 0.03385792857971465 2.305239717261751e-05 6.735820870392427e-06 4.586128700174636e-09 0.01904508482608949 1.296697340959735e-05 0.23420630094662873 6.850646652189484e-05']
['59852.425544684724 0.2532783231884818 6.727135419726264e-05 0.03357758206580573 2.304739333230679e-05 6.680047703558446e-06 4.585133217774769e-09 0.018887389912015724 1.296415874942257e-05 0.2343909332764661 6.850915637791634e-05']
['59852.42574731169 0.25337776476160023 6.726970273864838e-05 0.03366468318157264 2.3047761538019163e-05 6.697375919962349e-06 4.585206469973767e-09 0.01893638428963461 1.2964365865135778e-05 0.2344413804719656 6.850757395230994e-05']
['59852.42594993866 0.25325524286431933 6.726792363842504e-05 0.033715869884696346 2.3046899320028504e-05 6.7075591909907435e-06 4.585034937154722e-09 0.018965176810141694 1.2963880867516032e-05 0.23429006605417763 6.850573521809784e-05']
['59852.426152565626 0.2531945480683695 6.726973950126114e-05 0.03371237975928831 2.3047376324247946e-05 6.706864852602369e-06 4.585129834128972e-09 0.018963213614599673 1.2964149182389467e-05 0.2342313344537698 6.850756904598778e-05']
['59852.42635519259 0.25328836213114164 6.727471621719447e-05 0.03362872936871329 2.3046441888347324e-05 6.690223136162892e-06 4.584943934013239e-09 0.018916160269901228 1.2963623562195368e-05 0.23437220186124041 6.851235638894896e-05']
['59852.42655781956 0.2537494818327826 6.729870492298991e-05 0.034376548583362254 2.312989965269532e-05 6.8389970418509935e-06 4.601547328682466e-09 0.019336808578141268 1.3010568554641115e-05 0.23441267325464135 6.854480708577918e-05']
['59852.42676044653 0.2534201667877344 6.727602213507631e-05 0.03409603563668799 2.305194508300427e-05 6.78319076427039e-06 4.586038759803801e-09 0.019179020045636992 1.29667191091899e-05 0.2342411467420974 6.851422449955854e-05']
['59852.42696307349 0.25320782365529426 6.726873922425014e-05 0.03390519111671707 2.305000283950396e-05 6.7452234533761755e-06 4.585652362736598e-09 0.01907167000315335 1.2965626597220977e-05 0.2341361536521409 6.850686644328971e-05']
['59852.427165700465 0.2533848886571546 6.72752394460197e-05 0.03399789477263604 2.3050299345039646e-05 6.763666259728918e-06 4.5857113506386714e-09 0.019123815809607772 1.29657933815848e-05 0.23426107284754683 6.851328076025286e-05']
['59852.42736832743 0.2532395655144698 6.727014634589653e-05 0.03386583066294663 2.304898201220705e-05 6.737392939901293e-06 4.585449275598665e-09 0.019049529747907475 1.2965052381866465e-05 0.23419003576656233 6.850813946286147e-05']
['59852.4275709544 0.25346115531160374 6.727914816663378e-05 0.03426043231475635 2.305416707462375e-05 6.815896444198474e-06 4.586480810990987e-09 0.019271493177050448 1.2967968979475857e-05 0.23418966213455328 6.851753058510288e-05']
['59852.42777358137 0.253324828081978 6.727672956021618e-05 0.03390588372963168 2.315631596733908e-05 6.745361244337437e-06 4.606802687499749e-09 0.01907205959791782 1.3025427731628233e-05 0.23425276848406015 6.852605422691675e-05']
['59852.42797620833 0.25340774060790605 6.727641299621416e-05 0.034057851982766965 2.305170881029869e-05 6.775594367686839e-06 4.585991754842538e-09 0.019157541740306417 1.2966586205793013e-05 0.23425019886759962 6.851458314453525e-05']
['59852.428178835304 0.25341947709858514 6.728286161195292e-05 0.0340527813822368 2.3051731472673925e-05 6.774585603763314e-06 4.585996263378839e-09 0.0191546895275082 1.2966598953379082e-05 0.23426478757107694 6.85209176464456e-05']
['59852.42838146227 0.2532148003106178 6.726352989292949e-05 0.033850894443720754 2.304963500396921e-05 6.734421473500166e-06 4.585579184182098e-09 0.019041128124592924 1.296541968973268e-05 0.23417367218602492 6.850171210552278e-05']
['59852.42858408923 0.2538183339285318 6.730777041850332e-05 0.03410439620742716 2.305322044997762e-05 6.784854046970651e-06 4.586292486001382e-09 0.01918372286667778 1.296743650311241e-05 0.23463461106185404 6.854553499807411e-05']
['59852.428786716206 0.2532921961886116 6.727120339385262e-05 0.033838739275061216 2.3049160501005697e-05 6.732003279529815e-06 4.585484784816905e-09 0.019034290842221933 1.2965152781815704e-05 0.23425790534638966 6.850919640977343e-05']
['59852.42898934317 0.2531490856430337 6.726048597056728e-05 0.03385054115597189 2.304830764184359e-05 6.734351189135709e-06 4.585315113877641e-09 0.019040929400234188 1.2964673048537018e-05 0.2341081562427995 6.849858188497292e-05']
['59852.429191970135 0.2531994208992382 6.726918070323106e-05 0.03357317490619149 2.30453673905735e-05 6.679170927011443e-06 4.584730169473183e-09 0.01888491088473271 1.2963019157197593e-05 0.23431451001450548 6.850680650967337e-05']
['59852.42939459711 0.2536525896258617 6.729419091429208e-05 0.0342243440008527 2.3055745704142372e-05 6.8087169022664506e-06 4.5867948693549865e-09 0.01925119350047964 1.2968856958580082e-05 0.23440139612538205 6.853246954270145e-05']
['59852.42959722407 0.25307290121710035 6.725780074914217e-05 0.03340588998463024 2.3044031490367688e-05 6.645890649297428e-06 4.584464400571642e-09 0.01879081311635451 1.2962267713331825e-05 0.23428208810074586 6.849548996746717e-05']
['59852.429799851045 0.25333032534377153 6.728529436717936e-05 0.03343082035195474 2.3046697593970527e-05 6.650850388288417e-06 4.584994805030626e-09 0.01880483644797454 1.2963767396608421e-05 0.234525488895797 6.852277069114577e-05']
['59852.43000247801 0.2530806377474364 6.725458702330206e-05 0.03387510640904907 2.3049515404333005e-05 6.739238290955129e-06 4.58555539059048e-09 0.0190547473550901 1.2965352414937314e-05 0.23402589039234628 6.849291816617561e-05']
['59852.430205104974 0.25326049009120166 6.726727196173805e-05 0.033564573103937685 2.3047352545322648e-05 6.677459652826204e-06 4.585125103462094e-09 0.018880072370964947 1.2964135806743989e-05 0.2343804177202367 6.850514356156136e-05']
['59852.43040773195 0.2533495028742201 6.727518688729327e-05 0.03363035694124705 2.304586944667838e-05 6.690546931430377e-06 4.584830050361684e-09 0.018917075779451467 1.2963301563756588e-05 0.23443242709476864 6.851275763062768e-05']
['59852.43061035891 0.2532291070773982 6.727058068231853e-05 0.03371372994605562 2.3047270344524465e-05 6.707133463725012e-06 4.5851087501328974e-09 0.018963973094656285 1.296408956879501e-05 0.23426513398274193 6.850838374742223e-05']
['59852.43081298588 0.25358500727990047 6.728597016663079e-05 0.03410274761658963 2.3053477424985587e-05 6.78452607024449e-06 4.5863436095548435e-09 0.019182795534331668 1.2967581051554392e-05 0.2344022117455688 6.852415588384408e-05']
['59852.43101561285 0.25340456699247493 6.727566718042382e-05 0.033993204653084266 2.305674232137111e-05 6.762733190090973e-06 4.586993140052892e-09 0.0191211776173599 1.2969417555771247e-05 0.23428338937511503 6.851438671043551e-05']
['59852.43121823981 0.25310802709928726 6.725832679563928e-05 0.033867201461584145 2.3049846482347913e-05 6.737665651625224e-06 4.585621256468757e-09 0.01905030082214108 1.29655386463207e-05 0.2340577262771462 6.849662557920824e-05']
['59852.431420866786 0.25315178763558843 6.726640770068103e-05 0.0333838915180459 2.3044392303559634e-05 6.641514193425753e-06 4.584536182075431e-09 0.018778438978900816 1.2962470670752294e-05 0.23437334865668763 6.85039798175577e-05']
['59852.43162349375 0.25335798308714325 6.727698102065422e-05 0.033757215851304326 2.304878269378407e-05 6.7157847096939585e-06 4.585409622458332e-09 0.018988433916358682 1.2964940265253537e-05 0.23436954917078456 6.851482942644651e-05']
['59852.431826120715 0.2535878668988466 6.729182904740141e-05 0.0341083482111179 2.305221783658442e-05 6.785640273123774e-06 4.586093022404459e-09 0.01918594586875382 1.2966872533078735e-05 0.23440192103009277 6.852977484155196e-05']
['59852.43202874769 0.2532350744830346 6.726609430521449e-05 0.03364934657072 2.3047035028877597e-05 6.6943247981780065e-06 4.585061935572415e-09 0.01892775744603 1.2963957203743647e-05 0.2343073170370046 6.850395338561495e-05']
['59852.43223137465 0.25301888051760635 6.725815987226817e-05 0.033544893634452705 2.3057600868779882e-05 6.673544546768753e-06 4.587163942632873e-09 0.018869002669379645 1.2969900488688682e-05 0.23414987784822672 6.849728745059961e-05']
['59852.43243400162 0.2533524660798744 6.728064987431188e-05 0.033540781600494396 2.304637806623644e-05 6.6727264836054694e-06 4.584931237007707e-09 0.018866689650278098 1.2963587662257997e-05 0.23448577642959628 6.85181760745774e-05']
['59852.43263662859 0.25321460956370173 6.726766958247023e-05 0.03364532864304415 2.304704175782129e-05 6.693525456864759e-06 4.585063274253228e-09 0.018925497361712333 1.2963960988774474e-05 0.2342891122019894 6.850550091470653e-05']
['59852.432839255554 0.253314922377596 6.727795397339573e-05 0.033785140274920245 2.3049197969289764e-05 6.72134009725829e-06 4.585492238895177e-09 0.019004141404642634 1.296517385772549e-05 0.23431078097295338 6.85158290032851e-05']
['59852.43304188253 0.25328980682910973 6.727064285322192e-05 0.03385532701114945 2.304999374140796e-05 6.735303304771246e-06 4.585650552727909e-09 0.01904362144377156 1.2965621479541976e-05 0.23424618538533817 6.850873470030298e-05']
['59852.43324450949 0.25321376044422994 6.726585412372346e-05 0.033855092249136506 2.304928097578576e-05 6.735256600352734e-06 4.58550875251286e-09 0.019043489390139282 1.2965220548879488e-05 0.23417027105409066 6.85039566366435e-05']
['59852.43344713646 0.2534411365495953 6.728050682954217e-05 0.03387847239062537 2.305070434889271e-05 6.739907931712911e-06 4.5857919235951544e-09 0.01905664071972677 1.2966021196252148e-05 0.23438449582986856 6.851849607880875e-05']
['59852.43364976343 0.25323079406978205 6.727015628650308e-05 0.03373001443307105 2.3048121768388674e-05 6.710373159480289e-06 4.585278135528717e-09 0.018973133118602464 1.296456849471863e-05 0.23425766095117959 6.850805765065012e-05']
['59852.43385239039 0.2532157567848514 6.726341566940899e-05 0.03371890855605445 2.3051376483117105e-05 6.708163715449586e-06 4.585925640450446e-09 0.018966886062780627 1.296639927175337e-05 0.2342488707220708 6.850178536060371e-05']
['59852.43405501736 0.25317724985029166 6.727002980182764e-05 0.03343544143340134 2.304422027075311e-05 6.651769723231737e-06 4.584501957236015e-09 0.018807435806288252 1.2962373902298622e-05 0.23436981404400342 6.850751817663352e-05']
['59852.43425764433 0.2529872801993637 6.724856466171027e-05 0.03430439302345076 2.3441402533060742e-05 6.824642149311646e-06 4.663518857679367e-09 0.01929622107569105 1.3185788924846666e-05 0.23369105912367263 6.852907761403794e-05']
['59852.434460271295 0.25355700280187127 6.72844269881805e-05 0.03414334204785681 2.305437555497918e-05 6.792602075742209e-06 4.586522286839868e-09 0.019205629901919454 1.2968086249675789e-05 0.2343513728999518 6.852273619833656e-05']
['59852.43466289826 0.25361082620852127 6.728556544935528e-05 0.034159134692333046 2.3053503049128392e-05 6.795743922533317e-06 4.586348707316081e-09 0.01921451326443734 1.296759546513472e-05 0.23439631294408392 6.852376120724004e-05']
['59852.43486552523 0.2533194353623368 6.727241329932471e-05 0.03359888422461679 2.304553504134649e-05 6.684285633400082e-06 4.584763522534726e-09 0.018899372376346944 1.29631134607574e-05 0.23442006298598986 6.850999855285088e-05']
['59852.4350681522 0.25340378157590615 6.727752693168057e-05 0.03398826114319177 2.305304677175077e-05 6.761749710046455e-06 4.586257933815994e-09 0.01911839689304537 1.2967338809109806e-05 0.23428538468286078 6.851581938379815e-05']
['59852.43527077917 0.2536648969032116 6.729414753941686e-05 0.0342319087958122 2.3055865071965124e-05 6.810221870405552e-06 4.586818616828783e-09 0.01925544869764436 1.296892410298038e-05 0.23440944820556722 6.853243965776842e-05']
['59852.435473406134 0.2534344870061373 6.727998947313702e-05 0.03386937600857738 2.3050590870254693e-05 6.738098264003923e-06 4.585769347737435e-09 0.019051524004824776 1.2965957364518264e-05 0.23438296300131253 6.851797599085902e-05']
['59852.4356760331 0.2529996899479201 6.725320970497715e-05 0.033515974276686754 2.3046880474689234e-05 6.667791223344385e-06 4.5850311879935985e-09 0.018852735530636298 1.2963870267012694e-05 0.2341469544172838 6.849128519688887e-05']
['59852.43587866007 0.2532400199102487 6.72655845418652e-05 0.03376637795352135 2.305126962396615e-05 6.71760745201515e-06 4.585904381497835e-09 0.01899358759885576 1.2966339163480957e-05 0.23424643231139294 6.850390364834134e-05']
['59852.436081287036 0.2531128389890768 6.725997192819736e-05 0.03360600732783332 2.3046484410702925e-05 6.685702729758913e-06 4.5849523935670965e-09 0.018903379121906243 1.2963647481020394e-05 0.2342094598671706 6.849788303147816e-05']
['59852.436283914 0.25370246043157285 6.72978585183323e-05 0.03414602232815218 2.305455361572472e-05 6.793135300564559e-06 4.586557710899648e-09 0.0192071375595856 1.2968186408845156e-05 0.23449532287198727 6.853594399939369e-05']
['59852.43648654097 0.2535366996444841 6.72854175046228e-05 0.03413362661714117 2.3053529730414625e-05 6.790669252213884e-06 4.586354015389321e-09 0.019200164972141907 1.2967610473358225e-05 0.2343365346723422 6.852361877601145e-05']
['59852.43668916794 0.25321009532120897 6.726937600861764e-05 0.03389386207691722 2.3051534890265594e-05 6.7429696125203865e-06 4.585957154551326e-09 0.019065297418265934 1.2966488375774396e-05 0.23414479790294304 6.850765482329602e-05']
['59852.43689179491 0.253331915859176 6.728336820108578e-05 0.033405238834878656 2.3044487629269532e-05 6.645761107170356e-06 4.584555146522848e-09 0.01879044684461924 1.296252429146411e-05 0.23454146901455677 6.852064413364543e-05']
['59852.437094421875 0.2532586679372548 6.727360254840923e-05 0.03350282328175795 2.3045153075526258e-05 6.665174916032516e-06 4.584687532849248e-09 0.018845338095988845 1.2962898604983518e-05 0.23441332984126598 6.851112566645228e-05']
['59852.43729704884 0.25307415349001405 6.725154246051055e-05 0.03370845348623647 2.3050041258168012e-05 6.7060837453972075e-06 4.585660005886962e-09 0.018961005086008013 1.2965648207719507e-05 0.23411314840400604 6.84899846456706e-05']
['59852.43749967581 0.25318800767150634 6.726704194130487e-05 0.033616303833225426 2.304764482227354e-05 6.68775115442107e-06 4.5851832501139515e-09 0.0189091709061893 1.2964300212528865e-05 0.23427883676531705 6.850494881053371e-05']
['59852.43770230278 0.2530235216805514 6.725305184739866e-05 0.03342887330804774 2.3044137316748973e-05 6.6504630362106455e-06 4.584485454061256e-09 0.01880374123577685 1.2962327240671297e-05 0.23421978044477457 6.849083814849357e-05']
['59852.43790492974 0.25357014998146843 6.728885272610553e-05 0.033953461412895465 2.3051142314979723e-05 6.754826523677802e-06 4.585879054179723e-09 0.0190988220447537 1.2966267552176094e-05 0.23447132793671474 6.852673781401049e-05']
['59852.438107556714 0.2533771227486504 6.727814354621321e-05 0.03387063682011193 2.305021149841623e-05 6.7383490944889616e-06 4.585693874108233e-09 0.019052233211312962 1.2965743967859129e-05 0.2343248895373374 6.851612303439933e-05']
['59852.43831018368 0.25312373215449513 6.726459332976783e-05 0.0336268985181782 2.304706920906811e-05 6.689858900021988e-06 4.585068735505261e-09 0.018915130416475235 1.2963976430100812e-05 0.23420860173801988 6.850248317177457e-05']
['59852.43851281065 0.2534995776536003 6.727727708543565e-05 0.03409451281826091 2.3053376532694494e-05 6.782887809170264e-06 4.586323537671284e-09 0.01917816346027176 1.2967524299640651e-05 0.23432141419332855 6.851560915946274e-05']
['59852.438715437616 0.25332700064510216 6.727251562713203e-05 0.033843715125955326 2.304972576189323e-05 6.732993193612172e-06 4.585597239897389e-09 0.01903708975834987 1.2965470741064942e-05 0.2342899108867523 6.851054510321848e-05']
['59852.43891806458 0.2533806261012052 6.727672257184166e-05 0.03388877095681353 2.305006938757585e-05 6.741956766357416e-06 4.585665602054841e-09 0.01906243366320761 1.2965664030511414e-05 0.2343181924379976 6.851471260802782e-05']
['59852.43912069155 0.25360732278624 6.728872236619888e-05 0.03411979595678986 2.305301416217421e-05 6.787917729762463e-06 4.586251446346867e-09 0.019192385225694292 1.2967320466222992e-05 0.23441493756054568 6.852680904397285e-05']
['59852.43932331852 0.2532949242521755 6.7275708313528e-05 0.03364826879628813 2.3046949790045314e-05 6.694110381767543e-06 4.5850449778455386e-09 0.018927151197912072 1.2963909256900488e-05 0.2343677730542634 6.85133846216055e-05']
['59852.43952594548 0.2531364810531779 6.726053669141084e-05 0.03349282470947211 2.3047419534373043e-05 6.663185763278575e-06 4.585138430510223e-09 0.018839713899078063 1.2964173488084836e-05 0.2342967671540998 6.849853713945857e-05']
['59852.439728572455 0.2532213460701441 6.726555194132935e-05 0.033691806131568906 2.3047511055534515e-05 6.7027718594162744e-06 4.58515663806678e-09 0.01895164094900751 1.2964224968738164e-05 0.23426970512113662 6.850347149606165e-05']
['59852.43993119942 0.25320432092863465 6.726625425021992e-05 0.03383971147876175 2.3180776823084803e-05 6.732196693310604e-06 4.611669020129985e-09 0.019034837706803483 1.30391869629852e-05 0.23416948322183118 6.851838700313159e-05']
['59852.44013382639 0.25317767510941086 6.72635970755576e-05 0.033477913535915754 2.3046212249720725e-05 6.6602192795550805e-06 4.584898248860054e-09 0.01883132636395261 1.2963494390467908e-05 0.23434634874545826 6.850141369603006e-05']
['59852.44033645336 0.25335106091571574 6.727648374119333e-05 0.033687508393085486 2.304842574261533e-05 6.701916851511584e-06 4.585338609279648e-09 0.018949223471110586 1.2964739480221121e-05 0.23440183744460516 6.851430313714833e-05']
['59852.44053908032 0.25317536987614897 6.72617568680826e-05 0.03368890808725238 2.3047864369142425e-05 6.702195311818432e-06 4.585226927575731e-09 0.018950010799079462 1.2964423707642614e-05 0.2342253590770695 6.849978262047511e-05']
['59852.440741707294 0.25314974852768823 6.726446416187233e-05 0.03366032539982081 2.304805470206551e-05 6.69650896682895e-06 4.585264793107658e-09 0.018933933037399205 1.2964530769911847e-05 0.23421581549028903 6.850246124824858e-05']
['59852.44094433426 0.25319064436972477 6.726420403466241e-05 0.03369086830776498 2.304752024071023e-05 6.702585285298594e-06 4.585158465399428e-09 0.0189511134231178 1.2964230135399503e-05 0.23423953094660696 6.850214892556508e-05']
['59852.441146961224 0.25346744240240393 6.728699319779842e-05 0.03393399565794694 2.3050150853655645e-05 6.750953934776461e-06 4.585681809216459e-09 0.019087872557595153 1.29657098551813e-05 0.2343795698448088 6.852480635251235e-05']
['59852.441349588196 0.2533231875290227 6.727156309298417e-05 0.033882132793393846 2.305836005930709e-05 6.7406361457057974e-06 4.587314978789315e-09 0.019058699696284036 1.2970327533360237e-05 0.23426448783273868 6.851052909805903e-05']
['59852.44155221516 0.25341597052266646 6.72777505727989e-05 0.03393579547679982 2.305132706199303e-05 6.751311997360343e-06 4.58591580843021e-09 0.019088884955699898 1.296637147237108e-05 0.23432708556696655 6.851585591157175e-05']
['59852.441754842126 0.2530649551605185 6.725871122915298e-05 0.03490386162855961 2.4779757457218944e-05 6.943902638975992e-06 4.929776109918312e-09 0.019633422166064778 1.3938613569685654e-05 0.23343153299445374 6.868783869399018e-05']
['59852.4419574691 0.2531460594571041 6.72624479732046e-05 0.0333445952819636 2.304417139374309e-05 6.6336964556539984e-06 4.5844922334638295e-09 0.018756334846104526 1.2962346408980486e-05 0.23438972461099958 6.850006811510821e-05']
['59852.44216009606 0.25322209518595445 6.726657750583761e-05 0.03358233704157858 2.3048637500747307e-05 6.680993675931609e-06 4.585380737221453e-09 0.01889006458588795 1.296485859417036e-05 0.2343320306000665 6.850459844211695e-05']
['59852.442362723035 0.253149431293474 6.726474276271136e-05 0.03349477862970236 2.3046395957643995e-05 6.663574483357389e-06 4.584934796390146e-09 0.018840812979207578 1.2963597726174747e-05 0.23430861831426641 6.85025582364616e-05']
['59852.44256535 0.2532431661531142 6.726224930413854e-05 0.033983872102059665 2.304987708003445e-05 6.7608765380569445e-06 4.585627343685082e-09 0.01911592805740856 1.2965555857519378e-05 0.23412723809570565 6.850048043734102e-05']
['59852.442767976965 0.2532632142813298 6.726606016172584e-05 0.033812509722859346 2.3051135723181493e-05 6.726785075919796e-06 4.5858777427831325e-09 0.01901953671910838 1.2966263844289589e-05 0.23424367756222142 6.850435641446937e-05']
['59852.44297060394 0.25325333064518296 6.727075847529746e-05 0.03355679350945025 2.304646143556891e-05 6.675911951678796e-06 4.584947822809413e-09 0.018875696349065763 1.2963634557507511e-05 0.2343776342961172 6.850847222630503e-05']
['59852.4431732309 0.2531417227898332 6.725922590695275e-05 0.03365414676699935 2.3047871891564455e-05 6.695279766885093e-06 4.585228424114044e-09 0.018930457556437134 1.2964427939005006e-05 0.23421126523339608 6.849729820502527e-05']
['59852.44337585787 0.2534780320915558 6.728298111609032e-05 0.03400911996674072 2.3050968916523363e-05 6.765899441140075e-06 4.585844557652905e-09 0.01913012998129165 1.296617001554439e-05 0.23434790211026413 6.852095382246345e-05']
['59852.44357848484 0.2532391534652244 6.726760645127863e-05 0.033329451682991236 2.3044019953247626e-05 6.630683732363182e-06 4.584462105334533e-09 0.01874781657168257 1.2962261223701789e-05 0.23449133689354185 6.850511728123371e-05']
['59852.443781111804 0.25365896174187064 6.7293633076012e-05 0.03420443479969719 2.305518766293343e-05 6.804756092545313e-06 4.586683850583922e-09 0.019239994574829666 1.2968543060400053e-05 0.23441896716704097 6.853186238297036e-05']
['59852.443983738776 0.2533755297124271 6.728852168674213e-05 0.033357692657899944 2.3043386213879917e-05 6.636302095806251e-06 4.58433602689328e-09 0.01876370212006872 1.2961904745307453e-05 0.23461182759235838 6.852558737737013e-05']
['59852.44418636574 0.2537034200898216 6.729550807573128e-05 0.03417345617458874 2.3053362677402112e-05 6.798593090900062e-06 4.586320781248446e-09 0.019222569098206164 1.2967516506038687e-05 0.23448085099161545 6.85335092601072e-05']
['59852.444388992706 0.2532885492863509 6.727718357945966e-05 0.03344213463338746 2.3044249855684047e-05 6.653101293060354e-06 4.584507842971015e-09 0.018811200731280446 1.2962390543822277e-05 0.23447734855507046 6.851454589351731e-05']
['59852.44459161968 0.25340459695484263 6.728872409257392e-05 0.03341422988046564 2.3044136473179733e-05 6.647549818856272e-06 4.584485286238488e-09 0.01879550430776192 1.29623267661636e-05 0.2346090926470807 6.852586595731089e-05']
['59852.44479424664 0.25345547904530535 6.727998004595504e-05 0.03395457493021418 2.3050801816791146e-05 6.755048050909667e-06 4.5858113142174405e-09 0.019099448398245473 1.2966076021945018e-05 0.23435603064705987 6.851798918817573e-05']
['59852.44499687361 0.25323736023206916 6.726900288518276e-05 0.033928409559250375 2.3054362473719615e-05 6.7498426157512634e-06 4.586519684405966e-09 0.019084730377078335 1.2968078891467283e-05 0.23415262985499083 6.85075895014709e-05']
['59852.44519950058 0.2537277695653753 6.729643432257029e-05 0.03418501320259958 2.3053349094065603e-05 6.8008922885692844e-06 4.58631807892951e-09 0.019229069926462266 1.29675088654119e-05 0.23449869963891304 6.853441732959107e-05']
['59852.445402127545 0.2531860835958547 6.72660603864293e-05 0.03372505491944723 2.304762301847671e-05 6.709386495594586e-06 4.585178912386398e-09 0.018970343392189067 1.296428794789315e-05 0.23421574020366565 6.850398267186106e-05']
['59852.44560475452 0.2532194196444087 6.726902265392539e-05 0.033470933345273055 2.304561722141343e-05 6.658830614749444e-06 4.584779871739572e-09 0.01882740000671609 1.2963159687045055e-05 0.2343920196376926 6.850667790723878e-05']
['59852.44580738148 0.25321741737596903 6.726487562203129e-05 0.033616280270734746 2.3046006693513608e-05 6.68774646681249e-06 4.5848573547519965e-09 0.018909157652288292 1.2963378765101404e-05 0.23430825972368075 6.850264725873607e-05']
['59852.44601000845 0.25324187103584395 6.726710983448967e-05 0.03349070187606844 2.3045954348725264e-05 6.6627634389916305e-06 4.584846941087234e-09 0.018838519805288494 1.296334932115796e-05 0.23440335123055545 6.850483553084164e-05']
['59852.44621263542 0.253204429474734 6.726449896854447e-05 0.033521725509207456 2.304707484716275e-05 6.668935394700061e-06 4.58506985716855e-09 0.018855970598929194 1.2963979601529047e-05 0.2343484588758048 6.850239111591785e-05']
['59852.446415262384 0.25360839411646385 6.728948109436919e-05 0.03409419994105473 2.3053278128745787e-05 6.782825564227834e-06 4.586303960827714e-09 0.019177987466843283 1.2967468947419504e-05 0.23443040664962056 6.852758216113975e-05']
In [16]:
fig, axs = plt.subplots(2, 2,figsize=(15,10))

#JWST pipeline: net aperture
dat = ascii.read('/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/303050_radii/WASP80b_WLP4_nrca3_level3_asn_phot.ecsv') #call the data 
normalized_net_aperture_sum_pipeline = dat['net_aperture_sum'].value/dat['net_aperture_sum'][0].value #normalized net aperture sum
std_net_aperture_sum_pipeline = np.std(normalized_net_aperture_sum_pipeline[0:20]) #calculated standard deviation
relative_error_net_aperture_sum_pipeline = (dat['net_aperture_sum_err'].value/dat['net_aperture_sum'].value)

#MAD: 
deviation = normalized_net_aperture_sum_pipeline[0:seg01_len] - np.median(normalized_net_aperture_sum_pipeline[0:seg01_len])
mad = np.median(np.abs(deviation))*1.48

print(style.BOLD+"Pipeline Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad*10**6))
print(style.BOLD+"Pipeline Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_net_aperture_sum_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_net_aperture_sum_pipeline)*10**6))
      
axs[0,0].errorbar(dat['MJD'],normalized_net_aperture_sum_pipeline,yerr=relative_error_net_aperture_sum_pipeline,color='navy',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[0,0].set_title("Net Aperture Sum")
axs[0,0].set_xlabel("Time (MJD)")
axs[0,0].set_ylabel("Normalized Flux")
axs[0,0].legend()

#JWST pipeline: aperature background
normalized_aperture__bkg_pipeline = dat['aperture_bkg'].value/dat['aperture_bkg'][0].value #normalized aperture bkg
std_aperture_bkg_pipeline = np.std(normalized_aperture__bkg_pipeline[0:20]) #calculated standard deviation
relative_error_aperture_bkg_pipeline = (dat['aperture_bkg_err'].value/dat['aperture_bkg'].value)

print(style.BOLD+"Pipeline Calculated Aperture Background std (ppm):"+style.END + " " +str(std_aperture_bkg_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Aperture Background (ppm):"+style.END + " " +str(np.median(relative_error_aperture_bkg_pipeline)*10**6))

axs[0,1].errorbar(dat['MJD'],normalized_aperture__bkg_pipeline,yerr=relative_error_aperture_bkg_pipeline,color='darkred',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[0,1].set_title("Aperture Background")
axs[0,1].set_xlabel("Time (MJD)")
axs[0,1].set_ylabel("Normalized Flux")
axs[0,1].legend()


#JWST pipeline: annulus mean
normalized_annulus_mean_pipeline = dat['annulus_mean'].value/dat['annulus_mean'][0].value #normalized annulus mean
std_annulus_mean_pipeline = np.std(normalized_annulus_mean_pipeline[0:20]) #calculated standard deviation
relative_error_annulus_mean_pipeline = (dat['annulus_mean_err'].value/dat['annulus_mean'].value)

print(style.BOLD+"Pipeline Calculated Annulus Mean std (ppm):"+style.END + " " +str(std_annulus_mean_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Annulus Mean (ppm):"+style.END + " " +str(np.median(relative_error_annulus_mean_pipeline)*10**6))

axs[1,0].errorbar(dat['MJD'],normalized_annulus_mean_pipeline,yerr=relative_error_annulus_mean_pipeline,color ='darkgreen',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[1,0].set_title("Annulus Mean")
axs[1,0].set_xlabel("Time (MJD)")
axs[1,0].set_ylabel("Normalized Flux")
axs[1,0].legend()

#JWST pipeline: annulus sum
normalized_annulus_sum_pipeline = dat['annulus_sum'].value/dat['annulus_sum'][0].value #normalized annulus sum
std_annulus_sum_pipeline = np.std(normalized_annulus_sum_pipeline[0:20]) #calculated standard deviation
relative_error_annulus_sum_pipeline = (dat['annulus_sum_err'].value/dat['annulus_sum'].value)

print(style.BOLD+"Pipeline Calculated Annulus Sum std (ppm):"+style.END + " " +str(std_annulus_sum_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Annulus Sum (ppm):"+style.END + " " +str(np.median(relative_error_annulus_sum_pipeline)*10**6))

axs[1,1].errorbar(dat['MJD'],normalized_annulus_sum_pipeline,yerr=relative_error_annulus_sum_pipeline,color = 'indigo',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[1,1].set_title("Annulus Sum")
axs[1,1].set_xlabel("Time (MJD)")
axs[1,1].set_ylabel("Normalized Flux")
axs[1,1].legend()
Pipeline Calculated Net Aperture Sum MAD (ppm): 531.6748660166982
Pipeline Calculated Net Aperture Sum std (ppm): 476.9652516631386
Median Relative Errors Net Aperture Sum (ppm): 292.4511286934578
Pipeline Calculated Aperture Background std (ppm): 7924.197837772472
Median Relative Errors Aperture Background (ppm): 685.3200320375091
Pipeline Calculated Annulus Mean std (ppm): 7924.197837772486
Median Relative Errors Annulus Mean (ppm): 685.3200320375092
Pipeline Calculated Annulus Sum std (ppm): 7924.197837772477
Median Relative Errors Annulus Sum (ppm): 685.3200320375093
Out[16]:
<matplotlib.legend.Legend at 0x7f81ace66fa0>

$\textbf{External method: tshirt $\rightarrow$ (bkgGeometry = CircularAnnulus) }$¶

In [17]:
phot = phot_pipeline.phot(paramFile='/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/WASP80b_WLP4_NRCA3_phot_pipeline.yaml') #create a photometric object
alteredParam = deepcopy(phot.param)
alteredParam['srcGeometry']='Circular'
alteredParam['bkgGeometry'] = 'CircularAnnulus' #Changing the outer radius
alteredParam['backEnd'] = 50 #Changing the outer radius
alteredParam['apRadius'] = 30 #Changing the source radius
alteredParam['backStart'] = 30 #Changing the inner radius

alteredParam['doCentering'] = True
alteredParam['srcNameShort'] = 'WASP80b_phot2' #provide a new name for centroid realignment

#Assignimg a object new phot2
phot2 = phot_pipeline.phot(directParam=alteredParam) #create new photometric object
#Assignimg a object phot
phot2.showStarChoices(showAps=True,showPlot=True,apColor='red',backColor='pink', figSize=(30,20),xLim=[900,1200]) #Plot the source and background subtraction area
In [18]:
phot2.get_allimg_cen(recenter=True,useMultiprocessing=True) #recenter the centroids each time. 
phot2.do_phot(useMultiprocessing=True) #extract the photometric data
  0%|                                                  | 0/1227 [00:00<?, ?it/s]2022-02-22 21:25:39,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|                                          | 1/1227 [00:00<10:00,  2.04it/s]2022-02-22 21:25:39,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 11/1227 [00:00<01:14, 16.31it/s]2022-02-22 21:25:39,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▋                                        | 19/1227 [00:00<00:44, 27.21it/s]2022-02-22 21:25:39,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:39,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                        | 24/1227 [00:01<00:51, 23.34it/s]2022-02-22 21:25:40,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█                                        | 31/1227 [00:01<00:53, 22.24it/s]2022-02-22 21:25:40,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▎                                       | 40/1227 [00:01<00:37, 31.32it/s]2022-02-22 21:25:40,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▌                                       | 45/1227 [00:01<00:45, 25.90it/s]2022-02-22 21:25:40,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:40,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                       | 51/1227 [00:02<00:50, 23.33it/s]2022-02-22 21:25:41,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██                                       | 60/1227 [00:02<00:36, 32.04it/s]2022-02-22 21:25:41,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██▏                                      | 65/1227 [00:02<00:46, 24.79it/s]2022-02-22 21:25:41,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:41,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▎                                      | 71/1227 [00:03<00:48, 23.80it/s]2022-02-22 21:25:42,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▌                                      | 76/1227 [00:03<00:44, 25.78it/s]2022-02-22 21:25:42,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▋                                      | 81/1227 [00:03<00:46, 24.76it/s]2022-02-22 21:25:42,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▉                                      | 87/1227 [00:03<00:38, 29.89it/s]2022-02-22 21:25:42,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|███                                      | 91/1227 [00:03<00:45, 24.71it/s]2022-02-22 21:25:42,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▏                                     | 97/1227 [00:03<00:37, 30.24it/s]2022-02-22 21:25:42,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:42,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 101/1227 [00:04<00:45, 24.80it/s]2022-02-22 21:25:43,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 106/1227 [00:04<00:38, 29.15it/s]2022-02-22 21:25:43,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▌                                    | 111/1227 [00:04<00:45, 24.77it/s]2022-02-22 21:25:43,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▊                                    | 117/1227 [00:04<00:36, 30.57it/s]2022-02-22 21:25:43,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▉                                    | 121/1227 [00:04<00:44, 24.61it/s]2022-02-22 21:25:43,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████▏                                   | 127/1227 [00:04<00:36, 30.36it/s]2022-02-22 21:25:43,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:43,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▎                                   | 131/1227 [00:05<00:44, 24.87it/s]2022-02-22 21:25:44,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▍                                   | 135/1227 [00:05<00:40, 27.10it/s]2022-02-22 21:25:44,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▌                                   | 141/1227 [00:05<00:42, 25.62it/s]2022-02-22 21:25:44,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▊                                   | 146/1227 [00:05<00:38, 28.44it/s]2022-02-22 21:25:44,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▉                                   | 151/1227 [00:05<00:41, 26.05it/s]2022-02-22 21:25:44,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:44,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████                                   | 156/1227 [00:06<00:35, 30.01it/s]2022-02-22 21:25:45,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▏                                  | 161/1227 [00:06<00:41, 25.82it/s]2022-02-22 21:25:45,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                  | 166/1227 [00:06<00:35, 29.74it/s]2022-02-22 21:25:45,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▌                                  | 171/1227 [00:06<00:41, 25.47it/s]2022-02-22 21:25:45,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▋                                  | 176/1227 [00:06<00:36, 28.68it/s]2022-02-22 21:25:45,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:45,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                  | 181/1227 [00:07<00:42, 24.61it/s]2022-02-22 21:25:46,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|██████                                  | 186/1227 [00:07<00:37, 27.77it/s]2022-02-22 21:25:46,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▏                                 | 191/1227 [00:07<00:39, 26.34it/s]2022-02-22 21:25:46,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▍                                 | 196/1227 [00:07<00:34, 29.68it/s]2022-02-22 21:25:46,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▌                                 | 201/1227 [00:07<00:39, 25.75it/s]2022-02-22 21:25:46,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                 | 206/1227 [00:07<00:34, 29.50it/s]2022-02-22 21:25:46,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:46,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▉                                 | 211/1227 [00:08<00:40, 25.37it/s]2022-02-22 21:25:47,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████                                 | 216/1227 [00:08<00:34, 29.28it/s]2022-02-22 21:25:47,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████▏                                | 220/1227 [00:08<00:32, 31.35it/s]2022-02-22 21:25:47,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████▎                                | 224/1227 [00:08<00:38, 25.89it/s]2022-02-22 21:25:47,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▍                                | 230/1227 [00:08<00:36, 27.57it/s]2022-02-22 21:25:47,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:47,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▋                                | 234/1227 [00:08<00:39, 25.11it/s]2022-02-22 21:25:48,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▊                                | 239/1227 [00:09<00:33, 29.54it/s]2022-02-22 21:25:48,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                                | 243/1227 [00:09<00:40, 24.55it/s]2022-02-22 21:25:48,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|████████                                | 248/1227 [00:09<00:34, 28.50it/s]2022-02-22 21:25:48,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▏                               | 252/1227 [00:09<00:40, 24.18it/s]2022-02-22 21:25:48,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▍                               | 257/1227 [00:09<00:34, 28.36it/s]2022-02-22 21:25:48,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▌                               | 261/1227 [00:09<00:36, 26.49it/s]2022-02-22 21:25:48,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:48,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▌                               | 264/1227 [00:10<00:37, 25.69it/s]2022-02-22 21:25:49,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▊                               | 270/1227 [00:10<00:33, 28.75it/s]2022-02-22 21:25:49,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▉                               | 274/1227 [00:10<00:37, 25.70it/s]2022-02-22 21:25:49,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████▏                              | 280/1227 [00:10<00:32, 28.71it/s]2022-02-22 21:25:49,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████▏                              | 283/1227 [00:10<00:37, 25.37it/s]2022-02-22 21:25:49,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████▍                              | 288/1227 [00:10<00:31, 29.75it/s]2022-02-22 21:25:49,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:49,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▌                              | 292/1227 [00:11<00:38, 24.34it/s]2022-02-22 21:25:50,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▌                              | 295/1227 [00:11<00:37, 25.04it/s]2022-02-22 21:25:50,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▊                              | 300/1227 [00:11<00:30, 30.20it/s]2022-02-22 21:25:50,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▉                              | 304/1227 [00:11<00:34, 26.61it/s]2022-02-22 21:25:50,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|██████████                              | 310/1227 [00:11<00:30, 29.62it/s]2022-02-22 21:25:50,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▏                             | 314/1227 [00:11<00:34, 26.61it/s]2022-02-22 21:25:50,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:50,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▎                             | 317/1227 [00:12<00:33, 26.88it/s]2022-02-22 21:25:51,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▍                             | 321/1227 [00:12<00:36, 24.95it/s]2022-02-22 21:25:51,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▌                             | 325/1227 [00:12<00:35, 25.45it/s]2022-02-22 21:25:51,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▊                             | 331/1227 [00:12<00:35, 25.14it/s]2022-02-22 21:25:51,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▉                             | 336/1227 [00:12<00:33, 26.71it/s]2022-02-22 21:25:51,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                             | 341/1227 [00:12<00:33, 26.26it/s]2022-02-22 21:25:51,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:51,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████▏                            | 345/1227 [00:13<00:30, 28.83it/s]2022-02-22 21:25:52,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▍                            | 350/1227 [00:13<00:28, 31.04it/s]2022-02-22 21:25:52,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▌                            | 354/1227 [00:13<00:32, 26.73it/s]2022-02-22 21:25:52,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▋                            | 357/1227 [00:13<00:32, 26.77it/s]2022-02-22 21:25:52,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▊                            | 361/1227 [00:13<00:34, 25.22it/s]2022-02-22 21:25:52,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▉                            | 366/1227 [00:13<00:32, 26.27it/s]2022-02-22 21:25:52,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:52,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|████████████                            | 371/1227 [00:14<00:34, 24.62it/s]2022-02-22 21:25:53,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▎                           | 376/1227 [00:14<00:32, 26.44it/s]2022-02-22 21:25:53,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▍                           | 381/1227 [00:14<00:34, 24.87it/s]2022-02-22 21:25:53,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▌                           | 386/1227 [00:14<00:31, 26.34it/s]2022-02-22 21:25:53,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▋                           | 391/1227 [00:14<00:34, 24.28it/s]2022-02-22 21:25:53,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:53,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▉                           | 396/1227 [00:15<00:31, 26.71it/s]2022-02-22 21:25:54,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|█████████████                           | 401/1227 [00:15<00:32, 25.32it/s]2022-02-22 21:25:54,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|█████████████▏                          | 406/1227 [00:15<00:28, 28.58it/s]2022-02-22 21:25:54,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|█████████████▍                          | 411/1227 [00:15<00:32, 25.26it/s]2022-02-22 21:25:54,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▌                          | 416/1227 [00:15<00:28, 28.42it/s]2022-02-22 21:25:54,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:54,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▋                          | 421/1227 [00:15<00:30, 26.47it/s]2022-02-22 21:25:54,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▉                          | 426/1227 [00:16<00:28, 28.51it/s]2022-02-22 21:25:55,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|██████████████                          | 431/1227 [00:16<00:29, 26.64it/s]2022-02-22 21:25:55,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▏                         | 436/1227 [00:16<00:27, 28.44it/s]2022-02-22 21:25:55,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▍                         | 441/1227 [00:16<00:29, 26.33it/s]2022-02-22 21:25:55,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▌                         | 446/1227 [00:16<00:27, 28.48it/s]2022-02-22 21:25:55,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:55,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▋                         | 449/1227 [00:16<00:27, 28.71it/s]2022-02-22 21:25:55,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▋                         | 452/1227 [00:17<00:30, 25.54it/s]2022-02-22 21:25:56,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▊                         | 456/1227 [00:17<00:27, 28.26it/s]2022-02-22 21:25:56,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▉                         | 460/1227 [00:17<00:25, 29.98it/s]2022-02-22 21:25:56,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|███████████████▏                        | 464/1227 [00:17<00:27, 27.86it/s]2022-02-22 21:25:56,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|███████████████▏                        | 467/1227 [00:17<00:28, 26.23it/s]2022-02-22 21:25:56,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|███████████████▎                        | 471/1227 [00:17<00:29, 25.60it/s]2022-02-22 21:25:56,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▌                        | 476/1227 [00:17<00:26, 28.24it/s]2022-02-22 21:25:56,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:56,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▌                        | 479/1227 [00:18<00:26, 28.36it/s]2022-02-22 21:25:57,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▋                        | 482/1227 [00:18<00:30, 24.80it/s]2022-02-22 21:25:57,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▉                        | 487/1227 [00:18<00:27, 27.09it/s]2022-02-22 21:25:57,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|████████████████                        | 491/1227 [00:18<00:26, 27.67it/s]2022-02-22 21:25:57,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|████████████████▏                       | 495/1227 [00:18<00:24, 29.65it/s]2022-02-22 21:25:57,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████▎                       | 499/1227 [00:18<00:26, 27.90it/s]2022-02-22 21:25:57,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████▍                       | 503/1227 [00:18<00:27, 26.05it/s]2022-02-22 21:25:57,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:57,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████▌                       | 507/1227 [00:19<00:27, 26.13it/s]2022-02-22 21:25:58,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▋                       | 511/1227 [00:19<00:24, 28.89it/s]2022-02-22 21:25:58,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▊                       | 515/1227 [00:19<00:24, 29.12it/s]2022-02-22 21:25:58,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▉                       | 518/1227 [00:19<00:26, 26.62it/s]2022-02-22 21:25:58,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|█████████████████                       | 522/1227 [00:19<00:23, 29.46it/s]2022-02-22 21:25:58,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|█████████████████▏                      | 526/1227 [00:19<00:24, 28.49it/s]2022-02-22 21:25:58,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|█████████████████▏                      | 529/1227 [00:19<00:25, 27.01it/s]2022-02-22 21:25:58,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:58,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|█████████████████▍                      | 533/1227 [00:20<00:27, 25.55it/s]2022-02-22 21:25:59,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▌                      | 537/1227 [00:20<00:28, 24.21it/s]2022-02-22 21:25:59,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▋                      | 543/1227 [00:20<00:25, 27.33it/s]2022-02-22 21:25:59,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▊                      | 547/1227 [00:20<00:25, 26.43it/s]2022-02-22 21:25:59,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▉                      | 552/1227 [00:20<00:22, 30.48it/s]2022-02-22 21:25:59,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|██████████████████▏                     | 556/1227 [00:20<00:22, 29.18it/s]2022-02-22 21:25:59,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:25:59,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████▎                     | 560/1227 [00:21<00:24, 27.50it/s]2022-02-22 21:26:00,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████▎                     | 563/1227 [00:21<00:25, 26.05it/s]2022-02-22 21:26:00,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████▍                     | 567/1227 [00:21<00:25, 25.81it/s]2022-02-22 21:26:00,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▋                     | 572/1227 [00:21<00:21, 29.87it/s]2022-02-22 21:26:00,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▊                     | 576/1227 [00:21<00:22, 28.99it/s]2022-02-22 21:26:00,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▉                     | 579/1227 [00:21<00:24, 26.27it/s]2022-02-22 21:26:00,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|███████████████████                     | 583/1227 [00:21<00:24, 26.31it/s]2022-02-22 21:26:00,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:00,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|███████████████████▏                    | 587/1227 [00:22<00:25, 25.29it/s]2022-02-22 21:26:01,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|███████████████████▎                    | 592/1227 [00:22<00:20, 30.62it/s]2022-02-22 21:26:01,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▍                    | 596/1227 [00:22<00:21, 29.34it/s]2022-02-22 21:26:01,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▌                    | 600/1227 [00:22<00:23, 27.22it/s]2022-02-22 21:26:01,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▋                    | 603/1227 [00:22<00:24, 25.97it/s]2022-02-22 21:26:01,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▊                    | 607/1227 [00:22<00:25, 24.63it/s]2022-02-22 21:26:01,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▉                    | 613/1227 [00:22<00:22, 27.04it/s]2022-02-22 21:26:01,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:01,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|████████████████████                    | 617/1227 [00:23<00:23, 25.78it/s]2022-02-22 21:26:02,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████▎                   | 623/1227 [00:23<00:21, 28.13it/s]2022-02-22 21:26:02,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████▍                   | 627/1227 [00:23<00:22, 26.14it/s]2022-02-22 21:26:02,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▋                   | 633/1227 [00:23<00:20, 28.49it/s]2022-02-22 21:26:02,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▊                   | 637/1227 [00:23<00:22, 26.45it/s]2022-02-22 21:26:02,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:02,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▉                   | 643/1227 [00:24<00:20, 28.67it/s]2022-02-22 21:26:03,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|█████████████████████                   | 647/1227 [00:24<00:21, 26.44it/s]2022-02-22 21:26:03,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|█████████████████████▎                  | 653/1227 [00:24<00:19, 28.77it/s]2022-02-22 21:26:03,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|█████████████████████▍                  | 656/1227 [00:24<00:19, 28.91it/s]2022-02-22 21:26:03,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▍                  | 659/1227 [00:24<00:19, 28.45it/s]2022-02-22 21:26:03,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▌                  | 663/1227 [00:24<00:20, 27.80it/s]2022-02-22 21:26:03,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▋                  | 666/1227 [00:24<00:19, 28.16it/s]2022-02-22 21:26:03,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:03,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▊                  | 669/1227 [00:24<00:20, 27.68it/s]2022-02-22 21:26:04,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▉                  | 673/1227 [00:25<00:20, 27.22it/s]2022-02-22 21:26:04,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|██████████████████████                  | 676/1227 [00:25<00:21, 25.20it/s]2022-02-22 21:26:04,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████▏                 | 681/1227 [00:25<00:18, 29.11it/s]2022-02-22 21:26:04,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████▎                 | 685/1227 [00:25<00:20, 26.35it/s]2022-02-22 21:26:04,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████▍                 | 688/1227 [00:25<00:21, 25.07it/s]2022-02-22 21:26:04,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████▌                 | 693/1227 [00:25<00:18, 28.80it/s]2022-02-22 21:26:04,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:04,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▋                 | 696/1227 [00:26<00:20, 25.81it/s]2022-02-22 21:26:05,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▊                 | 701/1227 [00:26<00:17, 29.69it/s]2022-02-22 21:26:05,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▉                 | 705/1227 [00:26<00:19, 26.76it/s]2022-02-22 21:26:05,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|███████████████████████                 | 708/1227 [00:26<00:20, 25.57it/s]2022-02-22 21:26:05,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|███████████████████████▏                | 713/1227 [00:26<00:18, 27.66it/s]2022-02-22 21:26:05,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|███████████████████████▎                | 716/1227 [00:26<00:19, 25.72it/s]2022-02-22 21:26:05,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▌                | 721/1227 [00:26<00:16, 30.55it/s]2022-02-22 21:26:05,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:05,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▋                | 725/1227 [00:27<00:18, 26.50it/s]2022-02-22 21:26:06,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▊                | 729/1227 [00:27<00:17, 29.20it/s]2022-02-22 21:26:06,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▉                | 733/1227 [00:27<00:18, 26.86it/s]2022-02-22 21:26:06,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▉                | 736/1227 [00:27<00:19, 25.14it/s]2022-02-22 21:26:06,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|████████████████████████▏               | 741/1227 [00:27<00:15, 30.66it/s]2022-02-22 21:26:06,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|████████████████████████▎               | 745/1227 [00:27<00:18, 26.22it/s]2022-02-22 21:26:06,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|████████████████████████▍               | 750/1227 [00:27<00:17, 27.88it/s]2022-02-22 21:26:06,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:06,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|████████████████████████▌               | 753/1227 [00:28<00:17, 27.50it/s]2022-02-22 21:26:07,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▋               | 756/1227 [00:28<00:18, 25.74it/s]2022-02-22 21:26:07,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▊               | 760/1227 [00:28<00:16, 28.23it/s]2022-02-22 21:26:07,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▊               | 763/1227 [00:28<00:16, 28.09it/s]2022-02-22 21:26:07,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▉               | 766/1227 [00:28<00:17, 26.37it/s]2022-02-22 21:26:07,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|█████████████████████████               | 770/1227 [00:28<00:16, 28.38it/s]2022-02-22 21:26:07,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|█████████████████████████▏              | 774/1227 [00:28<00:14, 30.71it/s]2022-02-22 21:26:07,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|█████████████████████████▎              | 778/1227 [00:28<00:15, 28.70it/s]2022-02-22 21:26:07,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:07,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████▍              | 781/1227 [00:29<00:16, 26.97it/s]2022-02-22 21:26:08,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████▌              | 785/1227 [00:29<00:18, 24.47it/s]2022-02-22 21:26:08,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████▊              | 790/1227 [00:29<00:15, 27.81it/s]2022-02-22 21:26:08,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▉              | 795/1227 [00:29<00:16, 25.44it/s]2022-02-22 21:26:08,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|██████████████████████████              | 800/1227 [00:29<00:14, 28.50it/s]2022-02-22 21:26:08,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|██████████████████████████▏             | 805/1227 [00:29<00:15, 27.29it/s]2022-02-22 21:26:08,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:08,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|██████████████████████████▎             | 809/1227 [00:30<00:14, 29.01it/s]2022-02-22 21:26:09,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|██████████████████████████▌             | 813/1227 [00:30<00:13, 30.41it/s]2022-02-22 21:26:09,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▋             | 817/1227 [00:30<00:14, 27.85it/s]2022-02-22 21:26:09,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▋             | 820/1227 [00:30<00:15, 26.28it/s]2022-02-22 21:26:09,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▉             | 825/1227 [00:30<00:14, 28.26it/s]2022-02-22 21:26:09,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▉             | 828/1227 [00:30<00:14, 27.68it/s]2022-02-22 21:26:09,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|███████████████████████████             | 831/1227 [00:30<00:14, 27.96it/s]2022-02-22 21:26:09,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:09,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|███████████████████████████▏            | 835/1227 [00:31<00:13, 28.89it/s]2022-02-22 21:26:10,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|███████████████████████████▎            | 838/1227 [00:31<00:14, 26.61it/s]2022-02-22 21:26:10,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████▍            | 842/1227 [00:31<00:13, 27.89it/s]2022-02-22 21:26:10,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████▌            | 845/1227 [00:31<00:13, 28.37it/s]2022-02-22 21:26:10,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████▋            | 848/1227 [00:31<00:13, 27.82it/s]2022-02-22 21:26:10,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████▋            | 851/1227 [00:31<00:13, 27.64it/s]2022-02-22 21:26:10,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▊            | 855/1227 [00:31<00:13, 27.39it/s]2022-02-22 21:26:10,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,830 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|████████████████████████████            | 859/1227 [00:31<00:12, 28.55it/s]2022-02-22 21:26:10,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:10,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|████████████████████████████            | 862/1227 [00:32<00:14, 25.38it/s]2022-02-22 21:26:11,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|████████████████████████████▏           | 865/1227 [00:32<00:13, 25.87it/s]2022-02-22 21:26:11,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|████████████████████████████▎           | 868/1227 [00:32<00:13, 25.70it/s]2022-02-22 21:26:11,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|████████████████████████████▍           | 871/1227 [00:32<00:13, 25.57it/s]2022-02-22 21:26:11,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|████████████████████████████▌           | 875/1227 [00:32<00:13, 26.80it/s]2022-02-22 21:26:11,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▌           | 878/1227 [00:32<00:12, 27.08it/s]2022-02-22 21:26:11,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▋           | 881/1227 [00:32<00:13, 26.45it/s]2022-02-22 21:26:11,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▊           | 884/1227 [00:32<00:12, 27.29it/s]2022-02-22 21:26:11,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:11,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▉           | 887/1227 [00:33<00:14, 24.01it/s]2022-02-22 21:26:12,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|█████████████████████████████           | 891/1227 [00:33<00:12, 28.00it/s]2022-02-22 21:26:12,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|█████████████████████████████▏          | 894/1227 [00:33<00:11, 28.34it/s]2022-02-22 21:26:12,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|█████████████████████████████▏          | 897/1227 [00:33<00:12, 26.06it/s]2022-02-22 21:26:12,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|█████████████████████████████▎          | 901/1227 [00:33<00:11, 29.13it/s]2022-02-22 21:26:12,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|█████████████████████████████▌          | 905/1227 [00:33<00:11, 27.71it/s]2022-02-22 21:26:12,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|█████████████████████████████▌          | 908/1227 [00:33<00:12, 26.38it/s]2022-02-22 21:26:12,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|█████████████████████████████▊          | 913/1227 [00:33<00:10, 28.71it/s]2022-02-22 21:26:12,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:12,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▊          | 916/1227 [00:34<00:11, 27.31it/s]2022-02-22 21:26:13,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▉          | 919/1227 [00:34<00:12, 25.51it/s]2022-02-22 21:26:13,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|██████████████████████████████          | 923/1227 [00:34<00:10, 28.92it/s]2022-02-22 21:26:13,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|██████████████████████████████▏         | 926/1227 [00:34<00:11, 26.79it/s]2022-02-22 21:26:13,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|██████████████████████████████▎         | 929/1227 [00:34<00:11, 25.60it/s]2022-02-22 21:26:13,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|██████████████████████████████▍         | 934/1227 [00:34<00:10, 27.82it/s]2022-02-22 21:26:13,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|██████████████████████████████▌         | 937/1227 [00:34<00:11, 26.08it/s]2022-02-22 21:26:13,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████▋         | 941/1227 [00:34<00:09, 29.38it/s]2022-02-22 21:26:13,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:13,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████▊         | 945/1227 [00:35<00:10, 26.33it/s]2022-02-22 21:26:14,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████▉         | 948/1227 [00:35<00:11, 25.27it/s]2022-02-22 21:26:14,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|███████████████████████████████         | 952/1227 [00:35<00:09, 28.65it/s]2022-02-22 21:26:14,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|███████████████████████████████▏        | 956/1227 [00:35<00:11, 24.43it/s]2022-02-22 21:26:14,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|███████████████████████████████▎        | 960/1227 [00:35<00:10, 26.43it/s]2022-02-22 21:26:14,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|███████████████████████████████▍        | 964/1227 [00:35<00:09, 26.95it/s]2022-02-22 21:26:14,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|███████████████████████████████▌        | 967/1227 [00:35<00:10, 24.42it/s]2022-02-22 21:26:14,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:14,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|███████████████████████████████▋        | 973/1227 [00:36<00:08, 28.66it/s]2022-02-22 21:26:15,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▊        | 976/1227 [00:36<00:09, 25.89it/s]2022-02-22 21:26:15,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|████████████████████████████████        | 982/1227 [00:36<00:07, 31.62it/s]2022-02-22 21:26:15,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|████████████████████████████████▏       | 986/1227 [00:36<00:09, 25.54it/s]2022-02-22 21:26:15,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|████████████████████████████████▎       | 992/1227 [00:36<00:07, 31.61it/s]2022-02-22 21:26:15,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:15,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|████████████████████████████████▍       | 996/1227 [00:37<00:09, 25.12it/s]2022-02-22 21:26:16,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▊       | 1002/1227 [00:37<00:07, 30.60it/s]2022-02-22 21:26:16,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 1006/1227 [00:37<00:08, 26.58it/s]2022-02-22 21:26:16,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 1010/1227 [00:37<00:07, 28.79it/s]2022-02-22 21:26:16,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▏      | 1014/1227 [00:37<00:07, 26.72it/s]2022-02-22 21:26:16,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▎      | 1017/1227 [00:37<00:07, 26.54it/s]2022-02-22 21:26:16,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▍      | 1022/1227 [00:37<00:07, 29.08it/s]2022-02-22 21:26:16,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:16,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▌      | 1026/1227 [00:38<00:07, 25.53it/s]2022-02-22 21:26:17,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▊      | 1031/1227 [00:38<00:06, 29.65it/s]2022-02-22 21:26:17,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▉      | 1035/1227 [00:38<00:08, 23.83it/s]2022-02-22 21:26:17,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████      | 1041/1227 [00:38<00:06, 29.98it/s]2022-02-22 21:26:17,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▏     | 1045/1227 [00:38<00:07, 23.83it/s]2022-02-22 21:26:17,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:17,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▍     | 1052/1227 [00:38<00:05, 30.09it/s]2022-02-22 21:26:17,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▌     | 1056/1227 [00:39<00:06, 24.98it/s]2022-02-22 21:26:18,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▊     | 1062/1227 [00:39<00:05, 30.22it/s]2022-02-22 21:26:18,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▉     | 1066/1227 [00:39<00:06, 24.84it/s]2022-02-22 21:26:18,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|██████████████████████████████████     | 1072/1227 [00:39<00:05, 30.02it/s]2022-02-22 21:26:18,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:18,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▏    | 1076/1227 [00:39<00:06, 24.27it/s]2022-02-22 21:26:19,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 1082/1227 [00:40<00:04, 29.88it/s]2022-02-22 21:26:19,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▌    | 1086/1227 [00:40<00:05, 25.40it/s]2022-02-22 21:26:19,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 1092/1227 [00:40<00:04, 29.87it/s]2022-02-22 21:26:19,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 1096/1227 [00:40<00:05, 25.89it/s]2022-02-22 21:26:19,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|██████████████████████████████████▉    | 1101/1227 [00:40<00:04, 30.05it/s]2022-02-22 21:26:19,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:19,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████    | 1105/1227 [00:41<00:04, 25.64it/s]2022-02-22 21:26:19,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 1109/1227 [00:41<00:04, 27.63it/s]2022-02-22 21:26:20,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 1114/1227 [00:41<00:04, 28.17it/s]2022-02-22 21:26:20,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▌   | 1118/1227 [00:41<00:04, 26.75it/s]2022-02-22 21:26:20,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▋   | 1124/1227 [00:41<00:03, 28.13it/s]2022-02-22 21:26:20,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 1127/1227 [00:41<00:03, 27.58it/s]2022-02-22 21:26:20,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 1132/1227 [00:41<00:02, 31.75it/s]2022-02-22 21:26:20,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:20,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████   | 1136/1227 [00:42<00:03, 27.17it/s]2022-02-22 21:26:21,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 1139/1227 [00:42<00:03, 26.14it/s]2022-02-22 21:26:21,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▎  | 1144/1227 [00:42<00:03, 27.12it/s]2022-02-22 21:26:21,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▍  | 1148/1227 [00:42<00:03, 26.23it/s]2022-02-22 21:26:21,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▋  | 1154/1227 [00:42<00:02, 27.79it/s]2022-02-22 21:26:21,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▊  | 1158/1227 [00:42<00:02, 27.53it/s]2022-02-22 21:26:21,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:21,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|████████████████████████████████████▉  | 1162/1227 [00:42<00:02, 29.87it/s]2022-02-22 21:26:22,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████  | 1166/1227 [00:43<00:02, 25.91it/s]2022-02-22 21:26:22,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████▏ | 1170/1227 [00:43<00:02, 26.35it/s]2022-02-22 21:26:22,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▎ | 1174/1227 [00:43<00:01, 28.47it/s]2022-02-22 21:26:22,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▍ | 1177/1227 [00:43<00:01, 27.44it/s]2022-02-22 21:26:22,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▌ | 1180/1227 [00:43<00:01, 25.78it/s]2022-02-22 21:26:22,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▋ | 1184/1227 [00:43<00:01, 28.62it/s]2022-02-22 21:26:22,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▋ | 1187/1227 [00:43<00:01, 28.10it/s]2022-02-22 21:26:22,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:22,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▊ | 1190/1227 [00:44<00:01, 25.52it/s]2022-02-22 21:26:23,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▉ | 1194/1227 [00:44<00:01, 27.52it/s]2022-02-22 21:26:23,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████ | 1198/1227 [00:44<00:01, 24.89it/s]2022-02-22 21:26:23,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▏| 1202/1227 [00:44<00:00, 28.16it/s]2022-02-22 21:26:23,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▎| 1206/1227 [00:44<00:00, 26.92it/s]2022-02-22 21:26:23,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▍| 1209/1227 [00:44<00:00, 26.61it/s]2022-02-22 21:26:23,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▌| 1214/1227 [00:44<00:00, 27.95it/s]2022-02-22 21:26:23,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:23,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:24,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:24,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:24,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▋| 1217/1227 [00:45<00:00, 27.90it/s]2022-02-22 21:26:24,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:24,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:24,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:24,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:24,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:24,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:24,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▊| 1220/1227 [00:45<00:00, 27.03it/s]2022-02-22 21:26:24,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:24,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:24,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:24,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:24,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:24,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|██████████████████████████████████████▉| 1224/1227 [00:45<00:00, 25.60it/s]2022-02-22 21:26:24,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|███████████████████████████████████████| 1227/1227 [00:45<00:00, 27.00it/s]
2022-02-22 21:26:24,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

  0%|                                                  | 0/1227 [00:00<?, ?it/s]2022-02-22 21:26:24,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:24,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:24,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,019 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,029 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  0%|                                          | 1/1227 [00:00<06:22,  3.21it/s]2022-02-22 21:26:25,041 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,043 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,046 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,169 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,219 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▎                                        | 11/1227 [00:00<00:47, 25.66it/s]2022-02-22 21:26:25,267 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,274 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,296 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,304 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,321 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  1%|▌                                        | 17/1227 [00:00<00:35, 34.25it/s]2022-02-22 21:26:25,339 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,362 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,368 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,419 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,419 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,440 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  2%|▋                                        | 22/1227 [00:00<00:37, 32.36it/s]2022-02-22 21:26:25,520 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,530 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,541 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,545 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,588 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,598 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,603 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,610 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,636 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,653 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,679 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█                                        | 31/1227 [00:00<00:30, 39.07it/s]2022-02-22 21:26:25,759 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,779 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  3%|█▎                                       | 38/1227 [00:01<00:26, 45.24it/s]2022-02-22 21:26:25,809 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,817 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,858 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,865 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,875 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,898 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:25,961 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▍                                       | 44/1227 [00:01<00:28, 40.82it/s]2022-02-22 21:26:25,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,029 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,056 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,117 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  4%|█▋                                       | 51/1227 [00:01<00:27, 42.30it/s]2022-02-22 21:26:26,163 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,182 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,202 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,227 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|█▉                                       | 59/1227 [00:01<00:23, 49.14it/s]2022-02-22 21:26:26,256 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,284 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,331 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,420 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,427 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  5%|██▏                                      | 65/1227 [00:01<00:26, 43.26it/s]2022-02-22 21:26:26,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,477 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,502 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,513 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,553 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▎                                      | 71/1227 [00:01<00:26, 43.03it/s]2022-02-22 21:26:26,628 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,631 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,665 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,665 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  6%|██▋                                      | 79/1227 [00:01<00:23, 49.73it/s]2022-02-22 21:26:26,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,701 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,727 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,770 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,824 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|██▊                                      | 85/1227 [00:02<00:26, 43.71it/s]2022-02-22 21:26:26,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,931 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,934 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,989 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:26,990 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  7%|███                                      | 91/1227 [00:02<00:26, 43.24it/s]2022-02-22 21:26:27,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,051 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,075 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,077 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  8%|███▎                                     | 99/1227 [00:02<00:23, 49.02it/s]2022-02-22 21:26:27,138 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,259 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,282 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,286 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,298 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,299 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  9%|███▍                                    | 105/1227 [00:02<00:25, 43.81it/s]2022-02-22 21:26:27,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,373 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,383 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

  9%|███▌                                    | 111/1227 [00:02<00:25, 43.52it/s]2022-02-22 21:26:27,476 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,506 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,520 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|███▉                                    | 119/1227 [00:02<00:21, 50.98it/s]2022-02-22 21:26:27,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,700 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 10%|████                                    | 125/1227 [00:03<00:24, 44.50it/s]2022-02-22 21:26:27,736 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,741 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,755 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,786 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,830 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▎                                   | 131/1227 [00:03<00:25, 42.76it/s]2022-02-22 21:26:27,922 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,933 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,938 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,965 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:27,978 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 11%|████▌                                   | 139/1227 [00:03<00:21, 50.13it/s]2022-02-22 21:26:28,006 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,068 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,087 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,153 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 12%|████▋                                   | 145/1227 [00:03<00:24, 44.38it/s]2022-02-22 21:26:28,182 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,185 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,230 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,244 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,305 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 12%|████▉                                   | 151/1227 [00:03<00:24, 43.06it/s]2022-02-22 21:26:28,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,399 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,407 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,407 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████                                   | 157/1227 [00:03<00:23, 46.47it/s]2022-02-22 21:26:28,426 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,501 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,518 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 13%|█████▎                                  | 162/1227 [00:03<00:25, 41.57it/s]2022-02-22 21:26:28,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,611 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,653 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,668 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,746 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 14%|█████▌                                  | 171/1227 [00:04<00:23, 44.83it/s]2022-02-22 21:26:28,784 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,862 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,870 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 14%|█████▋                                  | 176/1227 [00:04<00:23, 44.53it/s]2022-02-22 21:26:28,874 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,947 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,952 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:28,964 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|█████▉                                  | 181/1227 [00:04<00:23, 45.24it/s]2022-02-22 21:26:29,020 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,051 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,053 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,091 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,093 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 15%|██████                                  | 186/1227 [00:04<00:23, 44.75it/s]2022-02-22 21:26:29,099 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████▏                                 | 191/1227 [00:04<00:22, 45.42it/s]2022-02-22 21:26:29,227 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,296 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,300 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████▍                                 | 196/1227 [00:04<00:22, 45.30it/s]2022-02-22 21:26:29,321 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,321 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 16%|██████▌                                 | 201/1227 [00:04<00:22, 46.17it/s]2022-02-22 21:26:29,420 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,475 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,487 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,490 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,513 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▋                                 | 206/1227 [00:04<00:22, 44.94it/s]2022-02-22 21:26:29,542 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,548 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,615 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,639 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,670 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 17%|██████▉                                 | 212/1227 [00:04<00:23, 42.83it/s]2022-02-22 21:26:29,697 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,710 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,766 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,771 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|███████▏                                | 220/1227 [00:05<00:19, 52.08it/s]2022-02-22 21:26:29,793 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,823 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,831 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,915 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:29,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 18%|███████▎                                | 226/1227 [00:05<00:22, 44.88it/s]2022-02-22 21:26:29,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,080 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,081 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,105 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▌                                | 232/1227 [00:05<00:23, 42.87it/s]2022-02-22 21:26:30,130 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,139 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,149 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,167 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,216 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 19%|███████▊                                | 238/1227 [00:05<00:21, 46.35it/s]2022-02-22 21:26:30,226 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,236 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,304 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,307 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,323 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,346 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 20%|███████▉                                | 243/1227 [00:05<00:22, 43.20it/s]2022-02-22 21:26:30,383 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,388 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,429 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,443 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,473 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 20%|████████▏                               | 251/1227 [00:05<00:20, 47.88it/s]2022-02-22 21:26:30,562 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,574 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,584 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,605 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████▎                               | 256/1227 [00:05<00:21, 45.77it/s]2022-02-22 21:26:30,640 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,645 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,648 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,651 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 21%|████████▌                               | 262/1227 [00:06<00:21, 44.98it/s]2022-02-22 21:26:30,783 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,801 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,863 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▋                               | 268/1227 [00:06<00:20, 46.94it/s]2022-02-22 21:26:30,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,919 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,964 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:30,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,001 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 22%|████████▉                               | 273/1227 [00:06<00:21, 44.21it/s]2022-02-22 21:26:31,022 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,041 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,081 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,086 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,089 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,110 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|█████████▏                              | 281/1227 [00:06<00:19, 48.21it/s]2022-02-22 21:26:31,179 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,209 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,259 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,267 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 23%|█████████▎                              | 286/1227 [00:06<00:20, 45.83it/s]2022-02-22 21:26:31,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,308 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,313 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,326 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,350 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,397 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▌                              | 292/1227 [00:06<00:20, 44.95it/s]2022-02-22 21:26:31,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,478 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,512 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,519 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,528 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,542 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 24%|█████████▋                              | 298/1227 [00:06<00:20, 45.34it/s]2022-02-22 21:26:31,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,569 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,613 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|█████████▉                              | 303/1227 [00:06<00:20, 45.08it/s]2022-02-22 21:26:31,700 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,701 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,748 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,756 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 25%|██████████                              | 308/1227 [00:07<00:20, 45.48it/s]2022-02-22 21:26:31,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,848 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,858 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,863 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████▏                             | 313/1227 [00:07<00:20, 45.55it/s]2022-02-22 21:26:31,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:31,957 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████▎                             | 318/1227 [00:07<00:20, 45.34it/s]2022-02-22 21:26:31,996 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,048 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,077 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 26%|██████████▌                             | 323/1227 [00:07<00:20, 43.92it/s]2022-02-22 21:26:32,145 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,162 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,200 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▋                             | 328/1227 [00:07<00:19, 45.48it/s]2022-02-22 21:26:32,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,268 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,317 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,319 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 27%|██████████▉                             | 334/1227 [00:07<00:19, 46.33it/s]2022-02-22 21:26:32,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,369 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,405 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,414 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,419 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,426 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|███████████                             | 339/1227 [00:07<00:18, 46.96it/s]2022-02-22 21:26:32,460 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,488 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,512 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|███████████▏                            | 344/1227 [00:07<00:19, 45.61it/s]2022-02-22 21:26:32,579 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,624 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,641 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,648 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 28%|███████████▍                            | 349/1227 [00:07<00:19, 45.39it/s]2022-02-22 21:26:32,719 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▌                            | 354/1227 [00:08<00:19, 45.42it/s]2022-02-22 21:26:32,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,856 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,872 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,878 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,880 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 29%|███████████▋                            | 359/1227 [00:08<00:19, 44.48it/s]2022-02-22 21:26:32,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:32,968 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|███████████▉                            | 365/1227 [00:08<00:18, 46.86it/s]2022-02-22 21:26:33,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,029 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,050 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,078 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,116 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 30%|████████████                            | 370/1227 [00:08<00:19, 44.69it/s]2022-02-22 21:26:33,148 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,204 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,236 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,244 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|████████████▎                           | 376/1227 [00:08<00:18, 45.32it/s]2022-02-22 21:26:33,286 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,319 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,338 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,377 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,380 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 31%|████████████▍                           | 382/1227 [00:08<00:18, 46.30it/s]2022-02-22 21:26:33,388 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,423 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,431 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,455 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,456 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,464 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▌                           | 387/1227 [00:08<00:18, 44.27it/s]2022-02-22 21:26:33,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,541 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,549 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,552 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,607 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 32%|████████████▊                           | 394/1227 [00:08<00:16, 49.38it/s]2022-02-22 21:26:33,629 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,700 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|█████████████                           | 399/1227 [00:09<00:18, 44.56it/s]2022-02-22 21:26:33,771 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,783 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,789 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,809 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,848 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,876 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,877 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|█████████████▏                          | 405/1227 [00:09<00:17, 45.91it/s]2022-02-22 21:26:33,910 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,957 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,964 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:33,966 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 33%|█████████████▎                          | 410/1227 [00:09<00:17, 46.19it/s]2022-02-22 21:26:34,000 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,030 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,053 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████▌                          | 415/1227 [00:09<00:17, 45.89it/s]2022-02-22 21:26:34,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,174 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,208 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 34%|█████████████▋                          | 420/1227 [00:09<00:17, 46.61it/s]2022-02-22 21:26:34,217 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,250 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,255 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,256 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,317 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|█████████████▊                          | 425/1227 [00:09<00:17, 46.15it/s]2022-02-22 21:26:34,350 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,402 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,416 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 35%|██████████████                          | 431/1227 [00:09<00:16, 47.95it/s]2022-02-22 21:26:34,436 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,439 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,478 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,490 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,511 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,526 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,537 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|██████████████▏                         | 436/1227 [00:09<00:17, 46.00it/s]2022-02-22 21:26:34,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|██████████████▍                         | 442/1227 [00:09<00:16, 47.37it/s]2022-02-22 21:26:34,673 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,727 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,742 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,784 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,787 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 36%|██████████████▌                         | 447/1227 [00:10<00:17, 44.68it/s]2022-02-22 21:26:34,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,843 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▊                         | 453/1227 [00:10<00:17, 45.40it/s]2022-02-22 21:26:34,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:34,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,027 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 37%|██████████████▉                         | 458/1227 [00:10<00:16, 45.30it/s]2022-02-22 21:26:35,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,089 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,130 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,138 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|███████████████                         | 463/1227 [00:10<00:16, 45.46it/s]2022-02-22 21:26:35,177 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,227 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 38%|███████████████▎                        | 468/1227 [00:10<00:16, 45.46it/s]2022-02-22 21:26:35,276 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,280 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████▍                        | 473/1227 [00:10<00:16, 45.56it/s]2022-02-22 21:26:35,377 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,393 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,451 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,465 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,481 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████▌                        | 478/1227 [00:10<00:16, 44.78it/s]2022-02-22 21:26:35,497 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,552 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,585 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 39%|███████████████▋                        | 483/1227 [00:10<00:16, 45.31it/s]2022-02-22 21:26:35,596 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|███████████████▉                        | 488/1227 [00:10<00:16, 45.89it/s]2022-02-22 21:26:35,698 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,724 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,796 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 40%|████████████████                        | 493/1227 [00:11<00:16, 45.78it/s]2022-02-22 21:26:35,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,827 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|████████████████▏                       | 498/1227 [00:11<00:15, 46.64it/s]2022-02-22 21:26:35,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:35,982 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|████████████████▍                       | 503/1227 [00:11<00:15, 45.46it/s]2022-02-22 21:26:36,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,109 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 41%|████████████████▌                       | 508/1227 [00:11<00:15, 46.24it/s]2022-02-22 21:26:36,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,159 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▋                       | 513/1227 [00:11<00:15, 45.36it/s]2022-02-22 21:26:36,246 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,259 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,329 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 42%|████████████████▉                       | 518/1227 [00:11<00:15, 45.72it/s]2022-02-22 21:26:36,353 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,369 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,369 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,414 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,426 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,456 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|█████████████████                       | 523/1227 [00:11<00:15, 45.55it/s]2022-02-22 21:26:36,463 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,548 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|█████████████████▏                      | 528/1227 [00:11<00:15, 44.84it/s]2022-02-22 21:26:36,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,674 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 43%|█████████████████▍                      | 533/1227 [00:11<00:15, 45.92it/s]2022-02-22 21:26:36,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,756 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,779 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,788 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|█████████████████▌                      | 538/1227 [00:12<00:15, 45.17it/s]2022-02-22 21:26:36,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,809 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,813 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,841 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,877 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,884 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 44%|█████████████████▋                      | 543/1227 [00:12<00:14, 46.07it/s]2022-02-22 21:26:36,901 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,972 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:36,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|█████████████████▊                      | 548/1227 [00:12<00:15, 44.00it/s]2022-02-22 21:26:37,034 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,116 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,120 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 45%|██████████████████                      | 554/1227 [00:12<00:13, 48.18it/s]2022-02-22 21:26:37,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,182 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,228 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|██████████████████▏                     | 559/1227 [00:12<00:14, 46.36it/s]2022-02-22 21:26:37,247 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,255 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,269 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,316 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,328 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|██████████████████▍                     | 564/1227 [00:12<00:14, 47.28it/s]2022-02-22 21:26:37,347 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,411 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,427 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,463 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,472 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 46%|██████████████████▌                     | 569/1227 [00:12<00:15, 43.29it/s]2022-02-22 21:26:37,548 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▊                     | 576/1227 [00:12<00:13, 47.13it/s]2022-02-22 21:26:37,615 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,639 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,654 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,673 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,694 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,708 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 47%|██████████████████▉                     | 581/1227 [00:13<00:14, 45.32it/s]2022-02-22 21:26:37,784 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,798 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,807 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,827 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|███████████████████▏                    | 587/1227 [00:13<00:13, 47.41it/s]2022-02-22 21:26:37,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,913 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,933 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:37,939 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 48%|███████████████████▎                    | 592/1227 [00:13<00:13, 46.65it/s]2022-02-22 21:26:37,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,020 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|███████████████████▍                    | 597/1227 [00:13<00:13, 47.27it/s]2022-02-22 21:26:38,088 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,126 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,148 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,159 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 49%|███████████████████▋                    | 602/1227 [00:13<00:13, 45.98it/s]2022-02-22 21:26:38,215 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,230 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,322 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,348 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,357 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|███████████████████▊                    | 608/1227 [00:13<00:15, 40.10it/s]2022-02-22 21:26:38,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,439 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,452 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,456 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,460 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,464 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,465 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|████████████████████                    | 614/1227 [00:13<00:13, 44.32it/s]2022-02-22 21:26:38,568 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 50%|████████████████████▏                   | 619/1227 [00:13<00:14, 43.33it/s]2022-02-22 21:26:38,597 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,686 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|████████████████████▎                   | 624/1227 [00:13<00:13, 44.25it/s]2022-02-22 21:26:38,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,754 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,772 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 51%|████████████████████▌                   | 629/1227 [00:14<00:13, 44.64it/s]2022-02-22 21:26:38,808 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,907 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████▋                   | 634/1227 [00:14<00:13, 44.45it/s]2022-02-22 21:26:38,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:38,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,010 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████▊                   | 639/1227 [00:14<00:13, 44.32it/s]2022-02-22 21:26:39,110 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,124 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 52%|████████████████████▉                   | 644/1227 [00:14<00:13, 43.44it/s]2022-02-22 21:26:39,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,229 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,247 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,254 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,256 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,282 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|█████████████████████▏                  | 649/1227 [00:14<00:13, 41.69it/s]2022-02-22 21:26:39,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 53%|█████████████████████▍                  | 656/1227 [00:14<00:11, 49.06it/s]2022-02-22 21:26:39,419 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,439 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,442 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,466 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,471 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,476 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,493 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,500 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|█████████████████████▌                  | 662/1227 [00:14<00:11, 48.26it/s]2022-02-22 21:26:39,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,578 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,589 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 54%|█████████████████████▋                  | 667/1227 [00:14<00:11, 48.57it/s]2022-02-22 21:26:39,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,659 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,678 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,686 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,694 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|█████████████████████▉                  | 672/1227 [00:15<00:11, 46.82it/s]2022-02-22 21:26:39,765 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,775 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,817 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,870 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,876 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,911 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 55%|██████████████████████                  | 678/1227 [00:15<00:13, 40.58it/s]2022-02-22 21:26:39,922 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:39,997 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,002 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|██████████████████████▎                 | 686/1227 [00:15<00:11, 47.82it/s]2022-02-22 21:26:40,070 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,114 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,160 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 56%|██████████████████████▌                 | 692/1227 [00:15<00:11, 46.65it/s]2022-02-22 21:26:40,213 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,229 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,229 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,252 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,253 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,307 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,320 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,337 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,347 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████▊                 | 698/1227 [00:15<00:12, 41.36it/s]2022-02-22 21:26:40,378 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,424 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,447 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,463 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 57%|██████████████████████▉                 | 705/1227 [00:15<00:10, 47.57it/s]2022-02-22 21:26:40,471 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,569 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,605 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|███████████████████████▏                | 711/1227 [00:15<00:11, 45.67it/s]2022-02-22 21:26:40,651 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,659 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,665 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,667 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,694 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,697 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 58%|███████████████████████▎                | 716/1227 [00:15<00:10, 46.53it/s]2022-02-22 21:26:40,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,783 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,810 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,824 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|███████████████████████▌                | 721/1227 [00:16<00:11, 45.44it/s]2022-02-22 21:26:40,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,889 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:40,920 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 59%|███████████████████████▋                | 726/1227 [00:16<00:10, 46.54it/s]2022-02-22 21:26:40,975 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,040 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|███████████████████████▊                | 731/1227 [00:16<00:10, 45.71it/s]2022-02-22 21:26:41,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,137 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|███████████████████████▉                | 736/1227 [00:16<00:10, 46.23it/s]2022-02-22 21:26:41,227 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,227 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,254 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 60%|████████████████████████▏               | 741/1227 [00:16<00:10, 45.81it/s]2022-02-22 21:26:41,336 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,342 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,370 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 61%|████████████████████████▎               | 746/1227 [00:16<00:11, 42.97it/s]2022-02-22 21:26:41,447 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,455 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,465 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,466 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,469 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 61%|████████████████████████▌               | 753/1227 [00:16<00:11, 40.72it/s]2022-02-22 21:26:41,580 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,679 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,683 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████▋               | 758/1227 [00:16<00:11, 41.64it/s]2022-02-22 21:26:41,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,781 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,785 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 62%|████████████████████████▊               | 763/1227 [00:17<00:10, 43.31it/s]2022-02-22 21:26:41,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,820 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,835 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,870 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,900 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,901 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|█████████████████████████               | 768/1227 [00:17<00:10, 43.01it/s]2022-02-22 21:26:41,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:41,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|█████████████████████████▏              | 773/1227 [00:17<00:10, 44.44it/s]2022-02-22 21:26:42,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,124 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,130 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,136 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,138 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 63%|█████████████████████████▎              | 778/1227 [00:17<00:10, 43.46it/s]2022-02-22 21:26:42,153 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,215 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,248 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|█████████████████████████▌              | 784/1227 [00:17<00:09, 44.99it/s]2022-02-22 21:26:42,264 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,267 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,335 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,353 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,359 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 64%|█████████████████████████▋              | 789/1227 [00:17<00:09, 46.18it/s]2022-02-22 21:26:42,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,441 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,462 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|█████████████████████████▉              | 794/1227 [00:17<00:09, 46.41it/s]2022-02-22 21:26:42,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,513 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,540 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,605 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,626 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 65%|██████████████████████████              | 799/1227 [00:17<00:10, 40.71it/s]2022-02-22 21:26:42,662 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,713 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,734 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|██████████████████████████▎             | 806/1227 [00:18<00:08, 47.76it/s]2022-02-22 21:26:42,754 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,808 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,826 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 66%|██████████████████████████▍             | 811/1227 [00:18<00:09, 45.94it/s]2022-02-22 21:26:42,909 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,914 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:42,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|██████████████████████████▌             | 816/1227 [00:18<00:08, 46.56it/s]2022-02-22 21:26:42,982 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,008 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,034 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|██████████████████████████▊             | 821/1227 [00:18<00:08, 45.36it/s]2022-02-22 21:26:43,110 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,148 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 67%|██████████████████████████▉             | 826/1227 [00:18<00:08, 45.56it/s]2022-02-22 21:26:43,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,219 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|███████████████████████████             | 831/1227 [00:18<00:08, 45.33it/s]2022-02-22 21:26:43,305 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,328 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,335 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,369 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,381 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,384 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 68%|███████████████████████████▎            | 836/1227 [00:18<00:08, 45.82it/s]2022-02-22 21:26:43,468 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,469 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,487 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,507 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|███████████████████████████▍            | 841/1227 [00:18<00:08, 45.33it/s]2022-02-22 21:26:43,558 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,562 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|███████████████████████████▌            | 846/1227 [00:18<00:08, 46.19it/s]2022-02-22 21:26:43,642 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,646 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,667 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,705 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,729 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 69%|███████████████████████████▋            | 851/1227 [00:19<00:08, 45.01it/s]2022-02-22 21:26:43,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,793 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,821 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,821 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|███████████████████████████▉            | 856/1227 [00:19<00:08, 46.17it/s]2022-02-22 21:26:43,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,915 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:43,945 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 70%|████████████████████████████            | 861/1227 [00:19<00:08, 43.89it/s]2022-02-22 21:26:43,990 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,008 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,040 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,047 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|████████████████████████████▎           | 867/1227 [00:19<00:07, 48.14it/s]2022-02-22 21:26:44,075 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,106 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,138 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 71%|████████████████████████████▍           | 872/1227 [00:19<00:07, 45.66it/s]2022-02-22 21:26:44,208 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,267 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,267 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,268 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|████████████████████████████▌           | 878/1227 [00:19<00:07, 46.91it/s]2022-02-22 21:26:44,324 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,391 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,428 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|████████████████████████████▊           | 883/1227 [00:19<00:07, 43.63it/s]2022-02-22 21:26:44,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,486 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,511 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,525 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,540 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 72%|████████████████████████████▉           | 889/1227 [00:19<00:07, 46.63it/s]2022-02-22 21:26:44,620 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,621 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|█████████████████████████████▏          | 894/1227 [00:19<00:07, 45.85it/s]2022-02-22 21:26:44,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,705 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,714 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,714 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,754 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 73%|█████████████████████████████▎          | 899/1227 [00:20<00:07, 46.31it/s]2022-02-22 21:26:44,792 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,833 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,841 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,868 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|█████████████████████████████▍          | 904/1227 [00:20<00:07, 45.69it/s]2022-02-22 21:26:44,921 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,937 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,962 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:44,978 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|█████████████████████████████▋          | 909/1227 [00:20<00:06, 46.09it/s]2022-02-22 21:26:45,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,059 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,087 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 74%|█████████████████████████████▊          | 914/1227 [00:20<00:06, 45.42it/s]2022-02-22 21:26:45,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|█████████████████████████████▉          | 919/1227 [00:20<00:06, 46.68it/s]2022-02-22 21:26:45,228 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,255 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,268 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,281 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,307 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 75%|██████████████████████████████          | 924/1227 [00:20<00:06, 45.11it/s]2022-02-22 21:26:45,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,369 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,374 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,400 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,406 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,486 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,490 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|██████████████████████████████▎         | 930/1227 [00:20<00:07, 40.84it/s]2022-02-22 21:26:45,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,574 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 76%|██████████████████████████████▌         | 937/1227 [00:20<00:06, 47.10it/s]2022-02-22 21:26:45,615 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,670 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,712 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,717 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|██████████████████████████████▋         | 942/1227 [00:21<00:06, 45.16it/s]2022-02-22 21:26:45,750 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,817 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 77%|██████████████████████████████▉         | 948/1227 [00:21<00:05, 48.68it/s]2022-02-22 21:26:45,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,841 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,925 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:45,978 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 78%|███████████████████████████████         | 954/1227 [00:21<00:06, 44.60it/s]2022-02-22 21:26:46,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,029 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,059 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,067 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,143 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,150 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,155 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 78%|███████████████████████████████▎        | 960/1227 [00:21<00:06, 41.70it/s]2022-02-22 21:26:46,184 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,237 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,244 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,246 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,257 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|███████████████████████████████▍        | 966/1227 [00:21<00:05, 45.71it/s]2022-02-22 21:26:46,275 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,286 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,362 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,362 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,372 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 79%|███████████████████████████████▋        | 971/1227 [00:21<00:05, 43.62it/s]2022-02-22 21:26:46,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,457 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,462 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,474 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|███████████████████████████████▊        | 977/1227 [00:21<00:05, 47.55it/s]2022-02-22 21:26:46,496 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,504 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,579 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,584 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,607 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 80%|████████████████████████████████        | 982/1227 [00:21<00:05, 44.60it/s]2022-02-22 21:26:46,666 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,700 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|████████████████████████████████▏       | 989/1227 [00:22<00:04, 50.31it/s]2022-02-22 21:26:46,769 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,795 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,813 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,816 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|████████████████████████████████▍       | 995/1227 [00:22<00:05, 43.69it/s]2022-02-22 21:26:46,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:46,933 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,005 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 81%|███████████████████████████████▊       | 1000/1227 [00:22<00:05, 43.93it/s]2022-02-22 21:26:47,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,034 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,065 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,110 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|███████████████████████████████▉       | 1005/1227 [00:22<00:04, 45.03it/s]2022-02-22 21:26:47,125 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,125 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,143 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,146 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,195 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,223 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 82%|████████████████████████████████       | 1010/1227 [00:22<00:04, 44.73it/s]2022-02-22 21:26:47,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,256 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,281 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,286 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▎      | 1015/1227 [00:22<00:04, 45.65it/s]2022-02-22 21:26:47,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,439 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 83%|████████████████████████████████▍      | 1020/1227 [00:22<00:04, 45.22it/s]2022-02-22 21:26:47,467 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,500 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,505 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,538 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▌      | 1025/1227 [00:22<00:04, 46.17it/s]2022-02-22 21:26:47,568 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,579 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,581 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,599 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▋      | 1030/1227 [00:22<00:04, 44.22it/s]2022-02-22 21:26:47,686 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,730 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,752 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,756 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 84%|████████████████████████████████▉      | 1036/1227 [00:23<00:04, 44.12it/s]2022-02-22 21:26:47,821 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,830 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,840 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:47,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|█████████████████████████████████      | 1041/1227 [00:23<00:04, 43.04it/s]2022-02-22 21:26:47,949 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,031 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,050 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 85%|█████████████████████████████████▏     | 1046/1227 [00:23<00:04, 43.82it/s]2022-02-22 21:26:48,094 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,158 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▍     | 1051/1227 [00:23<00:04, 43.46it/s]2022-02-22 21:26:48,171 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,252 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,259 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,259 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,265 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,265 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 86%|█████████████████████████████████▌     | 1057/1227 [00:23<00:03, 47.23it/s]2022-02-22 21:26:48,307 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,346 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,357 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,369 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|█████████████████████████████████▊     | 1062/1227 [00:23<00:03, 46.38it/s]2022-02-22 21:26:48,406 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,451 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,457 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,486 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|█████████████████████████████████▉     | 1067/1227 [00:23<00:03, 45.62it/s]2022-02-22 21:26:48,525 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,576 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,585 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 87%|██████████████████████████████████     | 1073/1227 [00:23<00:03, 49.51it/s]2022-02-22 21:26:48,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,626 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,668 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,711 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▎    | 1079/1227 [00:24<00:03, 47.67it/s]2022-02-22 21:26:48,792 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,810 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,832 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 88%|██████████████████████████████████▍    | 1084/1227 [00:24<00:03, 47.02it/s]2022-02-22 21:26:48,885 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,930 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▌    | 1089/1227 [00:24<00:02, 46.48it/s]2022-02-22 21:26:48,975 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:48,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,016 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,027 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 89%|██████████████████████████████████▊    | 1094/1227 [00:24<00:02, 46.90it/s]2022-02-22 21:26:49,071 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,081 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,143 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|██████████████████████████████████▉    | 1099/1227 [00:24<00:02, 45.79it/s]2022-02-22 21:26:49,193 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,231 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,236 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,253 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,288 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|███████████████████████████████████    | 1105/1227 [00:24<00:02, 46.26it/s]2022-02-22 21:26:49,318 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,347 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,359 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,383 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,454 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 90%|███████████████████████████████████▎   | 1110/1227 [00:24<00:02, 39.90it/s]2022-02-22 21:26:49,477 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,484 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,546 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,578 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▌   | 1117/1227 [00:24<00:02, 45.01it/s]2022-02-22 21:26:49,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,667 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,690 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,694 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,704 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 91%|███████████████████████████████████▋   | 1122/1227 [00:24<00:02, 44.49it/s]2022-02-22 21:26:49,725 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,771 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,783 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,785 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|███████████████████████████████████▊   | 1127/1227 [00:25<00:02, 45.63it/s]2022-02-22 21:26:49,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,923 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:49,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 92%|███████████████████████████████████▉   | 1132/1227 [00:25<00:02, 43.57it/s]2022-02-22 21:26:50,016 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,036 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████▏  | 1139/1227 [00:25<00:01, 45.99it/s]2022-02-22 21:26:50,144 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,145 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,145 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,149 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,158 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 93%|████████████████████████████████████▍  | 1145/1227 [00:25<00:01, 48.91it/s]2022-02-22 21:26:50,209 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,234 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,298 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,360 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,372 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▌  | 1150/1227 [00:25<00:01, 39.53it/s]2022-02-22 21:26:50,374 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,378 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,383 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,385 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,447 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,450 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,503 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 94%|████████████████████████████████████▊  | 1159/1227 [00:25<00:01, 45.61it/s]2022-02-22 21:26:50,539 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,540 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,617 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,633 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|████████████████████████████████████▉  | 1164/1227 [00:25<00:01, 44.06it/s]2022-02-22 21:26:50,730 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,746 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,836 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,843 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 95%|█████████████████████████████████████▏ | 1170/1227 [00:26<00:01, 38.76it/s]2022-02-22 21:26:50,855 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,878 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,883 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,884 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 96%|█████████████████████████████████████▍ | 1179/1227 [00:26<00:00, 48.15it/s]2022-02-22 21:26:50,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:50,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,056 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,105 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,109 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|█████████████████████████████████████▋ | 1185/1227 [00:26<00:00, 44.98it/s]2022-02-22 21:26:51,144 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,202 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,203 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 97%|█████████████████████████████████████▊ | 1190/1227 [00:26<00:00, 40.28it/s]2022-02-22 21:26:51,290 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,303 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,316 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,335 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,339 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,387 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████ | 1199/1227 [00:26<00:00, 49.77it/s]2022-02-22 21:26:51,427 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,454 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,474 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,494 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,497 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,526 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 98%|██████████████████████████████████████▎| 1205/1227 [00:26<00:00, 44.27it/s]2022-02-22 21:26:51,585 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,680 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,720 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,724 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▍| 1210/1227 [00:27<00:00, 40.53it/s]2022-02-22 21:26:51,745 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,756 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,785 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,807 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,823 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

 99%|██████████████████████████████████████▋| 1219/1227 [00:27<00:00, 50.94it/s]2022-02-22 21:26:51,869 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,873 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,944 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,962 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

2022-02-22 21:26:51,971 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/utils.py:94: UserWarning: Less than 0points accepted, returning flat line
  warnings.warn(warntext)

100%|███████████████████████████████████████| 1227/1227 [00:27<00:00, 44.94it/s]
In [19]:
#Tshirt: net aperture
Flux2, Flux_error2 = phot2.get_tSeries() #The flux data and flux data errors
normalized_flux_tshirt2 = Flux2['Flux 0']/Flux2['Flux 0'][0] #normalized net aperture sum
std_tshirt2 = np.std(normalized_flux_tshirt2[0:20]) #calculated standard deviation
relative_error_tshirt2 = (Flux_error2['Error 0']/Flux2['Flux 0'])

#MAD: 
deviation = normalized_flux_tshirt2[0:seg01_len] - np.median(normalized_flux_tshirt2[0:seg01_len])
mad = np.median(np.abs(deviation))*1.48

print(style.BOLD+"Tshirt Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad*10**6))
print(style.BOLD+"Tshirt Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_tshirt2*10**6))
print(style.BOLD+"Median Relative Errors Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_tshirt2)*10**6))

plt.errorbar(Flux2['Time (JD)'],normalized_flux_tshirt2,yerr=relative_error_tshirt2,fmt='b.',markersize=4,elinewidth=1,ecolor='silver')
Tshirt Calculated Net Aperture Sum MAD (ppm): 662.9473199611624
Tshirt Calculated Net Aperture Sum std (ppm): 604.1318732693674
Median Relative Errors Net Aperture Sum (ppm): 254.5071606835414
Out[19]:
<ErrorbarContainer object of 3 artists>

$\textbf{25-5-12 Radii}$¶

$\textbf{TSO Photometry Reference File: Radii Parameters}$¶

The original radii parameters are: radii': [{'pupil': 'WLP8', 'radius': 50.0, 'radius_inner': 60.0, 'radius_outer': 70.0}, {'pupil': 'ANY', 'radius': 3.0, 'radius_inner': 4.0, 'radius_outer': 5.0}]}

The altered radii parameters are (to try the pupil = CLEAR parameters): radius: 25.0, radius_inner: 5.0, and radius_outer: 12.0

In [30]:
original_tsophot=asdf.open("/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_tsophot_0001.asdf") #the original tsophot reference file
original_tsophot.tree #print the original tsophot reference file

#adjust the radii parameters
original_tsophot.tree['radii'] = [{'pupil': 'WLP8',
   'radius': 50.0,
   'radius_inner': 60.0,
   'radius_outer': 70.0}, #For this particular data set (F444W), the outer radius limit is 62 due to edge effects on detector
  {'pupil': 'ANY', 'radius': 25.0, 'radius_inner': 5.0, 'radius_outer': 12.0}]
original_tsophot.write_to('adjusted_jwst_nircam_tsophot_0001.asdf')
adjusted_tsophot=asdf.open('adjusted_jwst_nircam_tsophot_0001.asdf') #the adjusted tsophot reference file
adjusted_tsophot.tree #print the adjusted tsophot reference file
2021-11-08 23:06:33,652 - stpipe - WARNING - /tmp/ipykernel_354363/2304070180.py:1: ResourceWarning: unclosed file <_io.BufferedReader name='/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_tsophot_0001.asdf'>
  original_tsophot=asdf.open("/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_tsophot_0001.asdf") #the original tsophot reference file

2021-11-08 23:06:33,696 - stpipe - WARNING - /tmp/ipykernel_354363/2304070180.py:11: ResourceWarning: unclosed file <_io.BufferedReader name='adjusted_jwst_nircam_tsophot_0001.asdf'>
  adjusted_tsophot=asdf.open('adjusted_jwst_nircam_tsophot_0001.asdf') #the adjusted tsophot reference file

Out[30]:
{'asdf_library': {'author': 'Space Telescope Science Institute',
  'homepage': 'http://github.com/spacetelescope/asdf',
  'name': 'asdf',
  'version': '2.7.2'},
 'history': {'entries': [{'description': 'File created based on values of aperture radii for NIRCam that were specified as constants in tso_photometry_step.py.',
    'time': datetime.datetime(2018, 7, 13, 17, 20, 5)}],
  'extensions': [{'extension_class': 'asdf.extension.BuiltinExtension',
    'software': {'name': 'asdf', 'version': '2.7.2'}},
   {'extension_class': 'astropy.io.misc.asdf.extension.AstropyAsdfExtension',
    'software': {'name': 'astropy', 'version': '4.2.1'}},
   {'extension_class': 'astropy.io.misc.asdf.extension.AstropyExtension',
    'software': {'name': 'astropy', 'version': '4.2.1'}},
   {'extension_class': 'gwcs.extension.GWCSExtension',
    'software': {'name': 'gwcs', 'version': '0.16.1'}}]},
 'meta': {'author': 'NIRCam IDT; P. Hodge',
  'date': '2018-07-13T17:20:00',
  'description': 'aperture radii for tso_photometry',
  'exposure': {'type': 'NRC_TSIMAGE'},
  'filename': 'nircam_tsophot.asdf',
  'instrument': {'name': 'NIRCAM'},
  'model_type': 'TsoPhotModel',
  'pedigree': 'GROUND',
  'reftype': 'tsophot',
  'telescope': 'JWST',
  'useafter': '2015-01-01T00:00:00',
  'visit': {'tsovisit': True}},
 'radii': [{'pupil': 'WLP8',
   'radius': 50.0,
   'radius_inner': 60.0,
   'radius_outer': 70.0},
  {'pupil': 'ANY', 'radius': 25.0, 'radius_inner': 5.0, 'radius_outer': 12.0}]}
In [31]:
#The file to use is the stage 3 association file defined above. 

# Instantiate the class. Do not provide a configuration file.
pipeline_stage3 = Tso3Pipeline()

pipeline_stage3.outlier_detection.skip = True
pipeline_stage3.tso_photometry.override_tsophot = 'adjusted_jwst_nircam_tsophot_0001.asdf' #use the modified tso_phot ref file

# Specify that you want results saved to a file
pipeline_stage3.save_results = True
pipeline_stage3.output_dir = '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/25512_radii/'

# Execute the pipeline using the run method
result_stage3 = pipeline_stage3.run(level3_asn)
2021-11-08 23:06:48,995 - stpipe.Tso3Pipeline - INFO - Tso3Pipeline instance created.
2021-11-08 23:06:49,004 - stpipe.Tso3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created.
2021-11-08 23:06:49,009 - stpipe.Tso3Pipeline.tso_photometry - INFO - TSOPhotometryStep instance created.
2021-11-08 23:06:49,015 - stpipe.Tso3Pipeline.extract_1d - INFO - Extract1dStep instance created.
2021-11-08 23:06:49,020 - stpipe.Tso3Pipeline.white_light - INFO - WhiteLightStep instance created.
2021-11-08 23:06:49,395 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline running with args ('/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/nrca3_level3_asn.json',).
2021-11-08 23:06:49,404 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/25512_radii/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '', 'min_wavelength': None, 'max_wavelength': None}}}
2021-11-08 23:06:51,236 - stpipe.Tso3Pipeline - INFO - Prefetching reference files for dataset: 'jw01185002001_01101_00001-seg001_nrca3_calints.fits' reftypes = ['gain', 'readnoise']
2021-11-08 23:06:51,244 - stpipe.Tso3Pipeline - INFO - Prefetch for GAIN reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0048.fits'.
2021-11-08 23:06:51,246 - stpipe.Tso3Pipeline - INFO - Prefetch for READNOISE reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0030.fits'.
2021-11-08 23:06:51,247 - stpipe.Tso3Pipeline - INFO - Starting calwebb_tso3...
2021-11-08 23:07:21,939 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 23:07:22,221 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 23:07:22,226 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 23:07:22,227 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 23:07:22,327 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 23:07:39,428 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 23:07:39,704 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 23:07:39,708 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 23:07:39,710 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 23:07:39,809 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 23:07:57,053 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 23:07:57,337 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 23:07:57,342 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 23:07:57,343 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 23:07:57,443 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 23:08:14,676 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 23:08:14,980 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 23:08:14,984 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 23:08:14,986 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 23:08:15,085 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 23:08:32,284 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 23:08:32,567 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 23:08:32,572 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 23:08:32,573 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 23:08:32,672 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 23:08:46,005 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2021-11-08 23:08:46,532 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2021-11-08 23:08:46,536 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2021-11-08 23:08:46,538 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2021-11-08 23:08:46,616 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2021-11-08 23:08:47,262 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg001_nrca3_calints.fits>,).
2021-11-08 23:08:47,265 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_catalog': False}
2021-11-08 23:08:48,430 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 23:08:48,628 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg002_nrca3_calints.fits>,).
2021-11-08 23:08:48,631 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_catalog': False}
2021-11-08 23:08:49,786 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 23:08:49,984 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg003_nrca3_calints.fits>,).
2021-11-08 23:08:49,988 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_catalog': False}
2021-11-08 23:08:51,155 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 23:08:51,353 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg004_nrca3_calints.fits>,).
2021-11-08 23:08:51,356 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_catalog': False}
2021-11-08 23:08:52,535 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 23:08:52,764 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(212, 256, 2048) from jw01185002001_01101_00001-seg005_nrca3_calints.fits>,).
2021-11-08 23:08:52,767 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_catalog': False}
2021-11-08 23:08:54,242 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 23:08:54,448 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(167, 256, 2048) from jw01185002001_01101_00001-seg006_nrca3_calints.fits>,).
2021-11-08 23:08:54,452 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4', 'save_catalog': False}
2021-11-08 23:08:55,625 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2021-11-08 23:08:55,636 - stpipe.Tso3Pipeline - INFO - Writing Level 3 photometry catalog /fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/25512_radii/WASP80b_WLP4_nrca3_level3_asn_phot.ecsv
2021-11-08 23:08:55,746 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline done
In [24]:
#Import the stage 3 result file with all the data
with open('/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/25512_radii/WASP80b_WLP4_nrca3_level3_asn_phot.ecsv', 'r') as file:
    reader = csv.reader(file)
    for row in reader:
        print(row)
['# %ECSV 0.9']
['# ---']
['# datatype:']
['# - {name: MJD', ' datatype: float64}']
['# - {name: aperture_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_sum_err', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_sum_err', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_mean', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_mean_err', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_bkg', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_bkg_err', ' unit: Jy', ' datatype: float64}']
['# - {name: net_aperture_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: net_aperture_sum_err', ' unit: Jy', ' datatype: float64}']
['# meta: !!omap']
['# - {instrument: NIRCAM}']
['# - {detector: NRCA3}']
['# - {channel: SHORT}']
['# - {subarray: SUBGRISM256}']
['# - {filter: WLP4}']
['# - {pupil: CLEAR}']
['# - {target_name: UNKNOWN}']
['# - {xcenter: 1055.75}']
['# - {ycenter: 166.5}']
['# - ra_icrs: !numpy.ndarray']
['#     buffer: !!binary |']
['#       N3hKNXpxcnlja0E9']
['#     dtype: float64']
['#     order: C']
['#     shape: !!python/tuple []']
['# - dec_icrs: !numpy.ndarray']
['#     buffer: !!binary |']
['#       OGpMa01hd25BY0E9']
['#     dtype: float64']
['#     order: C']
['#     shape: !!python/tuple []']
['# - {apertures: Photometry measured in a circular aperture of r=25.0 pixels.  Background calculated as the mean in a circular annulus']
['#     with r_inner=5.0 pixels and r_outer=12.0 pixels.}']
['# - {number_of_integrations: 1227}']
['# - __serialized_columns__:']
['#     annulus_mean:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: &id001 !astropy.units.Unit {unit: Jy}']
['#       value: !astropy.table.SerializedColumn {name: annulus_mean}']
['#     annulus_mean_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_mean_err}']
['#     annulus_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_sum}']
['#     annulus_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_sum_err}']
['#     aperture_bkg:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_bkg}']
['#     aperture_bkg_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_bkg_err}']
['#     aperture_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_sum}']
['#     aperture_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_sum_err}']
['#     net_aperture_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: net_aperture_sum}']
['#     net_aperture_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: net_aperture_sum_err}']
['# schema: astropy-2.0']
['MJD aperture_sum aperture_sum_err annulus_sum annulus_sum_err annulus_mean annulus_mean_err aperture_bkg aperture_bkg_err net_aperture_sum net_aperture_sum_err']
['59852.197994600116 0.21351945637271144 6.254014371476969e-05 0.024541852018647725 1.9859709124486027e-05 6.564633716634614e-05 5.3122199588725517e-08 0.12889628161054478 0.00010430519498154426 0.08462317476216666 0.00012161761087935419']
['59852.19819722708 0.2135131599436042 6.253886781867341e-05 0.02455468099377445 1.9860277980276472e-05 6.56806530454423e-05 5.312372120571637e-08 0.12896366068158852 0.00010430818266951929 0.08454949926201569 0.0001216195171831368']
['59852.19839985405 0.2135095226672144 6.25364083924733e-05 0.02454125998787659 1.985872489436562e-05 6.564475355922532e-05 5.3119566898157403e-08 0.1288931722052342 0.00010430002570570178 0.08461635046198021 0.00012161125662059519']
['59852.19860248102 0.21383590092875882 6.256406161814133e-05 0.024631180962587415 1.98714918895488e-05 6.588528074599624e-05 5.3153716988776456e-08 0.12936544623207677 0.00010436707925183193 0.08447045469668205 0.00012168298581854717']
['59852.19880510798 0.21355239071074478 6.254227283949721e-05 0.024567716725714436 1.98609201544201e-05 6.57155219727544e-05 5.312543893999006e-08 0.1290321256602649 0.00010431155543287868 0.08452026505047988 0.00012162416079363768']
['59852.199007734955 0.21380116874868715 6.256525788834724e-05 0.024602924932203826 1.9866605920048066e-05 6.58096994534298e-05 5.314064764091363e-08 0.12921704271115456 0.00010434141764731128 0.0845841260375326 0.00012166159184921936']
['59852.19921036192 0.21376503377760775 6.256040794058738e-05 0.024586083122136154 1.9864203302504875e-05 6.576464975052417e-05 5.31342209441345e-08 0.12912858782634534 0.00010432879885769368 0.0846364459512624 0.00012164827542049996']
['59852.19941298889 0.2136575160131012 6.255002247683298e-05 0.024564748254007562 1.986193555991048e-05 6.570758168795477e-05 5.312815502071336e-08 0.12901653494751872 0.00010431688844490798 0.08464098106558249 0.00012163271980301882']
['59852.19961561586 0.2136260015362762 6.255081272454795e-05 0.024534967903411663 1.9856833653573237e-05 6.562792303241953e-05 5.311450806923834e-08 0.12886012554312848 0.00010429009271834684 0.08476587599314772 0.00012161014600642025']
['59852.19981824282 0.21348418005655512 6.253901860468835e-05 0.024524322370968733 1.985623288589915e-05 6.559944758519033e-05 5.311290109201177e-08 0.12880421413323914 0.00010428693742594093 0.08467996592331598 0.00012160137402891331']
['59852.200020869794 0.21364718507261285 6.25480305532554e-05 0.024575980509088026 1.9865060748482688e-05 6.573762654372158e-05 5.3136514503223636e-08 0.1290755278838657 0.0001043333022504343 0.08457165718874715 0.00012164577298275287']
['59852.20022349676 0.21336496534239374 6.252967476840452e-05 0.02451244149493745 1.9855906227383007e-05 6.55676677507594e-05 5.3112027321968954e-08 0.12874181457425132 0.00010428522178247378 0.08462315076814242 0.00012159509738826723']
['59852.20042612372 0.2136702225634518 6.255265096308451e-05 0.02452935666680086 1.985568829412771e-05 6.561291368715117e-05 5.3111444378190054e-08 0.12883065476260958 0.0001042840771750405 0.08483956780084223 0.00012160593281069506']
['59852.200628750696 0.21381244556928083 6.256401696903709e-05 0.024600031738536983 1.9866432857100656e-05 6.580196052782644e-05 5.3140184719509494e-08 0.1292018473662657 0.00010434050870325975 0.08461059820301514 0.00012166017415636469']
['59852.20083137766 0.21356562002060414 6.2545538223859e-05 0.024537420309106175 1.9857372591668994e-05 6.563448290618001e-05 5.311594966019565e-08 0.1288730058251375 0.00010429292327557245 0.08469261419546664 0.00012160986060791555']
['59852.20103400463 0.21357118685951215 6.254675814472976e-05 0.024522065643105335 1.985556672385418e-05 6.559341112477566e-05 5.3111119193148625e-08 0.12879236157093138 0.00010428343867570473 0.08477882528858077 0.00012160235415667242']
['59852.2012366316 0.2136388637120028 6.255523825919173e-05 0.02455403829238261 1.9859266497686404e-05 6.567893390084662e-05 5.3121015618253164e-08 0.12896028514906835 0.000104302870260958 0.08467857856293445 0.00012162338006460141']
['59852.20143925856 0.21377954459444243 6.256304082292341e-05 0.024568112607368717 1.9863289813227513e-05 6.571658090589991e-05 5.3131777476336966e-08 0.12903420487063402 0.00010432400111989241 0.0847453397238084 0.00012164551486460195']
['59852.201641885535 0.2137241423907203 6.255567914414386e-05 0.024548318827667892 1.9859557071322496e-05 6.566363505914599e-05 5.312179286582487e-08 0.1289302459436339 0.0001043043963829963 0.0847938964470864 0.00012162491561356286']
['59852.2018445125 0.21354781845916443 6.254234508027701e-05 0.02457830806321494 1.986207241702327e-05 6.574385245539574e-05 5.312852109610828e-08 0.1290877524328516 0.00010431760723226507 0.08446006602631284 0.00012162938833524392']
['59852.202047139464 0.21351414808701155 6.254234894947747e-05 0.02454142474475044 1.98602327635187e-05 6.564519426293763e-05 5.3123600256632174e-08 0.12889403752494982 0.0001043079451865478 0.08462011056206173 0.00012162110360113523']
['59852.20224976644 0.21361127170340322 6.25524704416239e-05 0.024542999041869254 1.9859835357266342e-05 6.564940530778392e-05 5.3122537245380435e-08 0.12890230589217047 0.00010430585796883584 0.08470896581123274 0.00012162451876560575']
['59852.2024523934 0.21362816122999984 6.254835570626816e-05 0.02457654279549448 1.986395652046677e-05 6.573913058844461e-05 5.313356083352559e-08 0.12907848106877354 0.00010432750273354397 0.0845496801612263 0.00012164096607712171']
['59852.202655020374 0.21383788019567057 6.256408745672537e-05 0.024602080516229852 1.9868783709491868e-05 6.580744074794604e-05 5.314647295108161e-08 0.12921260775330803 0.00010435285561707915 0.08462527244236254 0.00012167079976202896']
['59852.20285764734 0.2136920542259422 6.25585505705533e-05 0.024580879534576446 1.9863116347099157e-05 6.575073081469327e-05 5.3131313476475003e-08 0.12910125805975026 0.00010432309005829391 0.08459079616619194 0.00012164242421457811']
['59852.2030602743 0.2135432749520719 6.25456120128688e-05 0.024515957927142347 1.9854378864659754e-05 6.557707376029648e-05 5.31079418206698e-08 0.12876028323078964 0.00010427719991943149 0.08478299172128226 0.00012159641444179759']
['59852.203262901276 0.21355685619188286 6.254058862489979e-05 0.024572344277424614 1.986196432000155e-05 6.572790008584832e-05 5.312823195030425e-08 0.12905643002849063 0.00010431703949580648 0.08450042616339223 0.00012162799823526899']
['59852.20346552824 0.2135754029989233 6.254687856496601e-05 0.024541886830361678 1.9859111732860825e-05 6.564643028325964e-05 5.312060164200094e-08 0.12889646444517688 0.00010430205742048753 0.08467893855374642 0.00012161838348032456']
['59852.203668155205 0.2135650858834841 6.254217032840119e-05 0.02455570207038065 1.9859343629589075e-05 6.568338429568016e-05 5.312122193629653e-08 0.12896902347889 0.00010430327536548884 0.08459606240459411 0.00012161700671105064']
['59852.20387078218 0.213687467213938 6.255298497508474e-05 0.02458386912567121 1.9864561901688303e-05 6.575872759117319e-05 5.313518015140562e-08 0.12911695969365133 0.00010433068225676631 0.08457050752028666 0.0001216460734650137']
['59852.20407340914 0.21357083526566295 6.254669916500656e-05 0.024586214033021515 1.9864339801993748e-05 6.576499992051594e-05 5.313458606293087e-08 0.12912927538351637 0.00010432951576677389 0.08444155988214658 0.0001216418408137897']
['59852.204276036115 0.21366711218829526 6.255327348181306e-05 0.02454391840347739 1.9858592282186907e-05 6.565186448332044e-05 5.3119212177422005e-08 0.1289071344720451 0.00010429932921316653 0.08475997771625016 0.00012161933274610164']
['59852.20447866308 0.21375811891684504 6.255683802511541e-05 0.02458479593383884 1.9864755494831254e-05 6.57612066853106e-05 5.313569798847536e-08 0.12912182738360736 0.00010433169902747509 0.08463629153323768 0.00012164892685782383']
['59852.204681290044 0.2136103954742206 6.255137377254044e-05 0.024570318533054587 1.986273175692953e-05 6.572248147694193e-05 5.313028474661684e-08 0.1290457906147825 0.00010432107015194082 0.08456460485943809 0.00012163700110771483']
['59852.20488391702 0.21375545312516486 6.255625180944072e-05 0.02460841787012339 1.986928095454037e-05 6.582439236472384e-05 5.314780301843282e-08 0.1292458921750178 0.00010435546719821624 0.08450956095014706 0.00012166901074063248']
['59852.20508654398 0.2134562232676091 6.253649140325856e-05 0.024520584331278926 1.9854907224685787e-05 6.558944880377677e-05 5.310935511663409e-08 0.1287845815718431 0.00010427997491956822 0.08467164169576599 0.00012159410317221642']
['59852.205289170946 0.21347973380320495 6.253650302325511e-05 0.024562437577027803 1.9861787322087884e-05 6.570140092050575e-05 5.312775850336514e-08 0.1290043990390116 0.00010431610988491537 0.08447533476419336 0.00012162510017220678']
['59852.20549179792 0.21362374891427555 6.255495862297962e-05 0.02454372233247461 1.9858790500378682e-05 6.565134001829038e-05 5.311974238590994e-08 0.12890610468736666 0.00010430037027509813 0.08471764422690889 0.00012162109228191164']
['59852.20569442488 0.21374357772173744 6.255553994700142e-05 0.024604503581345492 1.986731645666445e-05 6.581392213938449e-05 5.314254823611944e-08 0.1292253339356381 0.00010434514945727128 0.08451824378609935 0.00012165979530363008']
['59852.20589705185 0.21353303323659842 6.253948824996116e-05 0.02456616021809585 1.9861931028991466e-05 6.571135851256182e-05 5.3128142901080455e-08 0.12902395072529335 0.00010431686464806442 0.08450908251130507 0.00012162728246807795']
['59852.20609967882 0.21347277830676448 6.254038689591703e-05 0.02452995387414683 1.985788628675763e-05 6.561451114095222e-05 5.3117323729314954e-08 0.12883379135581322 0.00010429562125397916 0.08463898695095126 0.00012160952514439179']
['59852.206302305785 0.21348034575108676 6.25356533008728e-05 0.024542109725918203 1.985615123574608e-05 6.564702650056409e-05 5.3112682688222434e-08 0.12889763511511662 0.00010428650859110337 0.08458271063597014 0.00012159927552370219']
['59852.20650493276 0.2136108324554362 6.254684553515064e-05 0.024616740212340206 1.9869616269165858e-05 6.584665357315928e-05 5.314869994246874e-08 0.1292896019555683 0.00010435722830444253 0.0843212304998679 0.00012166568532574637']
['59852.20670755972 0.2137390215508202 6.256010972375136e-05 0.024558556573990833 1.9860816480523192e-05 6.569101973029585e-05 5.3125161625483125e-08 0.12898401561969974 0.00010431101092711761 0.08475500593112045 0.00012163286697798855']
['59852.20691018669 0.21345982570629826 6.25401211755749e-05 0.024534959848714497 1.9856991414513498e-05 6.562790148712761e-05 5.311493005971681e-08 0.1288600832390467 0.00010429092129471376 0.08459974246725155 0.00012160535769922217']
['59852.20711281366 0.21366465147527675 6.255551426971255e-05 0.0245804886184606 1.9863932279209946e-05 6.57496851637324e-05 5.313349599124239e-08 0.1290992049288897 0.00010432737541601863 0.08456544654638704 0.0001216445380062052']
['59852.207315440624 0.21369113840851695 6.255248368230675e-05 0.02458594624871606 1.986567413255491e-05 6.576428363150929e-05 5.3138155227712846e-08 0.12912786895334066 0.00010433652380543547 0.08456326945517628 0.00012165082578687024']
['59852.20751806759 0.21366243723281866 6.25521135897019e-05 0.024556638698054092 1.98595974513827e-05 6.568588965574848e-05 5.312190087735737e-08 0.12897394274188076 0.00010430460846314444 0.0846884944909379 0.00012162326365128026']
['59852.20772069456 0.21368651211378137 6.255809675479944e-05 0.024538783280168057 1.9857251447134317e-05 6.563812868066387e-05 5.3115625613951576e-08 0.12888016428659696 0.00010429228701226008 0.08480634782718441 0.00012161577446955834']
['59852.207923321526 0.21361811607542916 6.254813013249851e-05 0.02454455953129167 1.985783824748262e-05 6.565357941879603e-05 5.311719523035562e-08 0.12891050173997728 0.00010429536894686251 0.08470761433545188 0.00012161329107804847']
['59852.2081259485 0.21340967619439705 6.25345688099571e-05 0.02453275930687067 1.985732756489282e-05 6.562201531717928e-05 5.3115829219288094e-08 0.12884852577137956 0.00010429268679040348 0.08456115042301748 0.00012160401643946']
['59852.20832857546 0.21387502708192532 6.256663491486005e-05 0.024594104693930658 1.9865493513986215e-05 6.578610643627983e-05 5.3137672095981383e-08 0.12917071793030807 0.00010433557517849904 0.08470430915161725 0.00012165728935167679']
['59852.20853120243 0.2134296756028648 6.253397079333573e-05 0.02451196649206034 1.985244802433403e-05 6.556639717839175e-05 5.310277706802845e-08 0.1287393198112413 0.00010426705895133421 0.08469035579162351 0.0001215817300647707']
['59852.2087338294 0.21335680952155195 6.253034429970627e-05 0.02453782149365691 1.985932771006956e-05 6.563555602390004e-05 5.312117935360372e-08 0.12887511288685352 0.00010430319175456703 0.08448169663469843 0.00012161085382657991']
['59852.208936456365 0.21391849888616501 6.257083049562464e-05 0.024609624097563745 1.9867842549672945e-05 6.582761886992764e-05 5.314395546809974e-08 0.12925222740317094 0.00010434791255080328 0.08466627148299408 0.00012167002787302335']
['59852.20913908333 0.21342078711020462 6.25326681621738e-05 0.024516118885968254 1.9854338753623958e-05 6.557750430471291e-05 5.310783452874342e-08 0.12876112860277444 0.00010427698925222667 0.08465965850743018 0.00012158957634184578']
['59852.2093417103 0.21359357234681506 6.255056738311314e-05 0.02455879022015486 1.9860281446125052e-05 6.569164470410997e-05 5.312373047642114e-08 0.1289852427529142 0.00010430820087250554 0.08460832959390086 0.00012162554932746796']
['59852.20954433727 0.21379210321122682 6.257333995499671e-05 0.02472679525919819 1.992900399246242e-05 6.614103684575858e-05 5.330755455963885e-08 0.12986762215965436 0.00010466913861587407 0.08392448105157246 0.00012194692063234991']
['59852.20974696424 0.2136781475055262 6.255392363161235e-05 0.02456651552430062 1.986104172951689e-05 6.571230891153326e-05 5.31257641379331e-08 0.12902581682931 0.0001043121939575467 0.08465233067621619 0.00012163069994843585']
['59852.209949591204 0.21381484193570036 6.256422819152188e-05 0.024586569092231114 1.9865753048306886e-05 6.576594965880666e-05 5.3138366317326534e-08 0.12913114019028948 0.00010433693827892272 0.08468370174541087 0.000121657220659608']
['59852.21015221817 0.21368835540006326 6.255632195081947e-05 0.024575152792340453 1.9863557550845278e-05 6.573541250654752e-05 5.313249364045997e-08 0.1290711806320402 0.00010432540730485965 0.08461717476802305 0.00012164326543355963']
['59852.21035484514 0.21356730812268193 6.254765896120672e-05 0.024549236754965426 1.9859644202542443e-05 6.566609039808383e-05 5.312202593077196e-08 0.12893506699036464 0.00010430485400494982 0.08463224113231729 0.0001216211832310528']
['59852.210557472106 0.213636145206766 6.254845505814352e-05 0.024559157657825324 1.9861553786632665e-05 6.569262755321135e-05 5.3127133825683034e-08 0.128987172572612 0.00010431488333315477 0.084648972634154 0.00012163019409246329']
['59852.21076009907 0.2135596674363466 6.254124389811614e-05 0.02455321128363757 1.9859216794772727e-05 6.567672175748941e-05 5.312088266927169e-08 0.12895594161574356 0.00010430260921624332 0.08460372582060305 0.00012161595897595025']
['59852.21096272604 0.21370012566791818 6.255662093278617e-05 0.02457470098710484 1.9863293408598215e-05 6.573420398492463e-05 5.3131787093496956e-08 0.1290688077053826 0.0001043240200031419 0.08463131796253559 0.00012164222939482921']
['59852.21116535301 0.2135835814287732 6.254774093252738e-05 0.02454319595795492 1.9858180955254933e-05 6.564993203330338e-05 5.3118111930120313e-08 0.12890334011530946 0.00010429716888264145 0.08468024131346374 0.00012161463453341787']
['59852.21136797998 0.2133977367646736 6.253036506802694e-05 0.024551348617070493 1.9862218668195917e-05 6.567173936099391e-05 5.312891229942021e-08 0.12894615870310133 0.00010431837535817183 0.08445157806157227 0.0001216238874272203']
['59852.211570606945 0.2135215233279817 6.254409627411818e-05 0.024550003626049213 1.986178175377842e-05 6.566814168083508e-05 5.3127743608844535e-08 0.12893909467462825 0.00010431608063959255 0.08458242865335344 0.00012162897951866627']
['59852.21177323391 0.21361815653494204 6.254782474595035e-05 0.024595420513532723 1.986839283591267e-05 6.578962608659724e-05 5.314542741390088e-08 0.12917762874754582 0.00010435080270962537 0.08444052778739622 0.00012166067732259787']
['59852.21197586088 0.21348110855992758 6.253669381739599e-05 0.024557157743171278 1.986012687594684e-05 6.568727803551465e-05 5.31233170208259e-08 0.12897666881917688 0.00010430738905434266 0.0845044397407507 0.00012161771863073546']
['59852.21217848785 0.21390276219404322 6.256992390032779e-05 0.024595133951987834 1.9865110486888214e-05 6.578885957085995e-05 5.31366475471413e-08 0.1291761236974151 0.00010433356348155576 0.08472663849662812 0.00012165725562272328']
['59852.21238111481 0.21377842424459692 6.256271762887356e-05 0.024564555514727204 1.9858769755811262e-05 6.570706613485902e-05 5.3119686896826786e-08 0.12901552266138236 0.00010430026132253814 0.08476290158321456 0.00012162498982141751']
['59852.212583741784 0.21359451335199864 6.254708871462578e-05 0.024568570526097268 1.9862945776376473e-05 6.571780578033996e-05 5.313085722145547e-08 0.12903660990597304 0.00010432219420365795 0.0845579034460256 0.00012163576164163643']
['59852.21278636875 0.21346994926847 6.253485476743097e-05 0.02454013475117933 1.9858531276472985e-05 6.564174369397293e-05 5.311904899488541e-08 0.12888726234863093 0.00010429900880500519 0.08458268691983906 0.00012160958555348437']
['59852.212988995714 0.21350215635501507 6.253667611108629e-05 0.024582746724173616 1.9865315962000382e-05 6.57557253097198e-05 5.31371971669696e-08 0.1291110647278026 0.00010433464265756503 0.08439109162721248 0.00012164108482541866']
['59852.213191622686 0.21358428237509808 6.254675393250529e-05 0.024534661206161094 1.9857683533806948e-05 6.562710265622692e-05 5.3116781390922895e-08 0.12885851473824106 0.0001042945563750365 0.08472576763685702 0.00012161188641312588']
['59852.21339424965 0.21360319133947017 6.254677641638997e-05 0.02456225433124629 1.986198263148442e-05 6.570091076131367e-05 5.3128280931195234e-08 0.12900343661368852 0.00010431713566956103 0.08459975472578166 0.00012163126257004603']
['59852.21359687662 0.21355007747308435 6.25414253132686e-05 0.024554369419383198 1.9859399269062966e-05 6.567981962351778e-05 5.31213707648226e-08 0.12896202426146638 0.00010430356758961643 0.08458805321161797 0.00012161687420805074']
['59852.21379950359 0.21383723385638828 6.256643732846567e-05 0.02460339362196208 1.986713092868125e-05 6.581095313900631e-05 5.31420519723277e-08 0.12921950431702775 0.0001043441750455948 0.08461772953936053 0.00012166456322990089']
['59852.21400213055 0.21353700702395345 6.254283117093108e-05 0.024553329763576152 1.9860361518378194e-05 6.567703867627737e-05 5.312394465952857e-08 0.12895656388432855 0.00010430862142005355 0.0845804431396249 0.00012162193154784068']
['59852.214204757525 0.21360913906585982 6.254746551721749e-05 0.02455334845885855 1.985880277282857e-05 6.567708868378334e-05 5.31197752131547e-08 0.12895666207383694 0.0001043004347312425 0.08465247699202288 0.00012161729370346015']
['59852.21440738449 0.2136311531372185 6.254986437881886e-05 0.024556888031848495 1.985870945120196e-05 6.56865565919814e-05 5.3119525589656003e-08 0.12897525226811185 0.00010429994459664896 0.08465590086910665 0.0001216181071085744']
['59852.214610011455 0.21354534058831182 6.254279694781469e-05 0.024574468742805777 1.9862987382403385e-05 6.573358276092125e-05 5.3130968512293213e-08 0.1290675879349043 0.00010432241272270686 0.08447775265340751 0.00012163374221959287']
['59852.21481263843 0.2136459926218668 6.255084936071084e-05 0.024560565248891504 1.9861269289821973e-05 6.569639268053966e-05 5.3126372832847476e-08 0.12899456538283352 0.00010431338912721625 0.08465142723903327 0.00012163014390747212']
['59852.21501526539 0.2137110725636994 6.255938439856029e-05 0.024560281288065908 1.986162310087246e-05 6.569563312139616e-05 5.312731923247109e-08 0.1289930739919428 0.00010431524737853182 0.0847179985717566 0.00012163612708390185']
['59852.215217892364 0.21370152545239052 6.255685314121622e-05 0.024551634353898153 1.9860903471496357e-05 6.567250367071737e-05 5.312539431528789e-08 0.12894765942173403 0.00010431146781248088 0.08475386603065649 0.00012163158385931643']
['59852.21542051933 0.21366868229309982 6.255300013057042e-05 0.024549551789713568 1.9858156647670653e-05 6.566693307602354e-05 5.31180469104196e-08 0.1289367215846301 0.00010429704121675764 0.08473196070846972 0.00012161722999602147']
['59852.215623146294 0.21369038991250727 6.25610436823187e-05 0.02456169003260927 1.986316473288192e-05 6.569940133412945e-05 5.313144290229857e-08 0.12900047286034283 0.00010432334418530421 0.08468991705216444 0.00012164392433914006']
['59852.215825773266 0.21361356084037553 6.255021432610222e-05 0.024540639392146752 1.985905314790785e-05 6.564309354446793e-05 5.312044493469242e-08 0.12888991277388 0.00010430174972640677 0.08472364806649552 0.00012161983517597497']
['59852.21602840023 0.21345687897835716 6.253859659569871e-05 0.024555906615159842 1.98616160092036e-05 6.56839314269859e-05 5.3127300263157585e-08 0.12897009776869667 0.00010431521013237185 0.0844867812096605 0.00012162540494946125']
['59852.216231027196 0.21356054263409835 6.25480838652572e-05 0.024567903659408603 1.9862910268270113e-05 6.571602199664443e-05 5.3130762241780735e-08 0.12903310745487712 0.00010432200771150271 0.08452743517922123 0.00012163611342103167']
['59852.21643365417 0.21393054315614213 6.259847620111192e-05 0.024572532740703416 1.986315442094002e-05 6.572840420118299e-05 5.313141531916367e-08 0.1290574198566356 0.00010432329002594549 0.08487312329950653 0.0001216631335472612']
['59852.21663628113 0.21371499529402008 6.25579085979964e-05 0.024580178008612064 1.986394477451454e-05 6.574885432183715e-05 5.313352941459519e-08 0.1290975735746432 0.0001043274410426184 0.08461742171937689 0.00012164582558664431']
['59852.216838908105 0.21383379174747752 6.257526243770007e-05 0.024754213571539143 1.9933961826755093e-05 6.62143773489569e-05 5.332081613669279e-08 0.1300116259009409 0.00010469517766152887 0.08382216584653662 0.00012197025741846301']
['59852.21704153507 0.21374928875451457 6.255823272356642e-05 0.024592252486663 1.9865506147200124e-05 6.578115201708188e-05 5.3137705888224084e-08 0.12916098995096115 0.00010433564152941242 0.08458829880355342 0.00012165302534195336']
['59852.217244162035 0.21393562999954763 6.257072865315637e-05 0.024637326316397576 1.9872487553835506e-05 6.590171878693633e-05 5.31563802642872e-08 0.12939772224998727 0.00010437230858106884 0.08453790774956035 0.00012169089893138591']
['59852.21744678901 0.2137106474713642 6.25534298498793e-05 0.024587839416623312 1.9863550431168705e-05 6.576934761521588e-05 5.313247459622939e-08 0.12913781206209726 0.00010432536991160035 0.08457283540926694 0.00012164174609555725']
['59852.21764941597 0.21375654539721686 6.256238877118385e-05 0.024561939734350155 1.9860435486424787e-05 6.570006925457247e-05 5.312414251465875e-08 0.12900178431906595 0.00010430900990769322 0.08475476107815091 0.00012163232315745676']
['59852.21785204294 0.21375325173754628 6.25576711225438e-05 0.02460199674035462 1.986919358431887e-05 6.58072166581199e-05 5.314756931418692e-08 0.12921216775396333 0.00010435500832100247 0.08454108398358295 0.00012166934691183661']
['59852.21805466991 0.21363379433379565 6.254883549777594e-05 0.02459554519444263 1.9867374806211693e-05 6.578995959219591e-05 5.314270431374752e-08 0.1291782835842575 0.00010434545591497739 0.08445551074953814 0.00012165661096805355']
['59852.218257296874 0.21398164033863643 6.258319838858012e-05 0.024593190360997934 1.9864667684229243e-05 6.578366071181136e-05 5.313546310626753e-08 0.1291659157615438 0.00010433123783733847 0.08481572457709263 0.00012166208903851547']
['59852.21845992384 0.21352839723698802 6.254456208576666e-05 0.024541256285106526 1.9857163032394713e-05 6.564474365478568e-05 5.311538911575242e-08 0.12889315275791244 0.00010429182264913192 0.08463524447907558 0.00012160841466764669']
['59852.21866255081 0.21387083621578434 6.256823362443717e-05 0.024593811479653928 1.986702246721069e-05 6.578532212532981e-05 5.314176185166931e-08 0.1291691779393589 0.00010434360539501414 0.08470165827642545 0.00012166499844126319']
['59852.218865177776 0.21356278965939934 6.254284610681636e-05 0.0245659172135307 1.9861617003596003e-05 6.571070850621329e-05 5.3127302923030974e-08 0.1290226744408125 0.00010431521535502103 0.08454011521858684 0.00012162759454048793']
['59852.21906780475 0.21389267951022312 6.256948234340257e-05 0.02462296894564183 1.987193023653665e-05 6.586331464364927e-05 5.3154889511295884e-08 0.129322315890976 0.00010436938149441519 0.08457036361924711 0.00012168774759296082']
['59852.21927043171 0.21354332771585965 6.254477921661856e-05 0.02455298418882257 1.9859339300869946e-05 6.567611430770188e-05 5.312121035752264e-08 0.12895474889087483 0.00010430325263061947 0.08458857882498483 0.00012161832886774258']
['59852.21947305868 0.21355717247884493 6.254109000722926e-05 0.02454819297896007 1.985906881805915e-05 6.566329842983622e-05 5.312048685035693e-08 0.1289295849735298 0.00010430183202762158 0.08462758750531513 0.00012161521329015765']
['59852.21967568565 0.21377184971047417 6.256484849729548e-05 0.02458194073056577 1.9866069004508666e-05 6.575356937918554e-05 5.31392114600377e-08 0.12910683156809755 0.00010433859771275561 0.08466501814237662 0.00012165896284349044']
['59852.219878312615 0.21358983035339862 6.254428975538688e-05 0.024536164467203053 1.985818411762944e-05 6.56311236885897e-05 5.311812038907048e-08 0.12886641001682278 0.00010429718549175127 0.08472342033657584 0.00012161287383540677']
['59852.22008093958 0.2136350211299477 6.254829900047341e-05 0.024578514492918136 1.9861793102354924e-05 6.57444046286338e-05 5.312777396484534e-08 0.1290888366224692 0.00010431614024346075 0.0845461845074785 0.00012163119181832427']
['59852.22028356655 0.21365554517809168 6.25479750280062e-05 0.024671086741437802 1.9883403517891243e-05 6.59920236361134e-05 5.318557908173399e-08 0.12957503540671114 0.00010442964032505906 0.08408050977138054 0.00012172838189397446']
['59852.22048619352 0.21367094209441354 6.255403308593193e-05 0.024596489379301003 1.9866456210174512e-05 6.579248516677412e-05 5.314024718601606e-08 0.12918324253834562 0.00010434063135595858 0.08448769955606791 0.00012165514541964887']
['59852.22068882049 0.21359685677192242 6.254538101015248e-05 0.02455316313323745 1.9860668295299372e-05 6.567659296128452e-05 5.3124765248829946e-08 0.1289556887249866 0.00010431023264337906 0.0846411680469358 0.00012162462464411146']
['59852.220891447454 0.21378931525370665 6.259572214227058e-05 0.0245502680344912 1.986015972062317e-05 6.566884893983572e-05 5.312340487616358e-08 0.1289404833744286 0.00010430756155789482 0.08484883187927805 0.00012164822986244543']
['59852.22109407442 0.21366719564462794 6.255205434218119e-05 0.024566418677989935 1.9864538710585084e-05 6.571204985995232e-05 5.3135118118149936e-08 0.12902530818272026 0.0001043305604547536 0.08464188746190768 0.0001216454904516817']
['59852.22129670139 0.21347857593915717 6.254038416111214e-05 0.024522191194576777 1.9856323657568378e-05 6.559374695901587e-05 5.3113143894698327e-08 0.12879302097992007 0.00010428741416790115 0.0846855549592371 0.00012160248519190237']
['59852.221499328356 0.21366051663788366 6.255316644324223e-05 0.02453614889765043 1.9857299465511318e-05 6.563108204201387e-05 5.311575405701139e-08 0.12886632824396235 0.00010429253920961828 0.0847941883939213 0.00012161345471149864']
['59852.22170195532 0.2135779049252663 6.254652374042614e-05 0.02454012954855765 1.9857679589075904e-05 6.564172977762072e-05 5.311677083926836e-08 0.12888723502393726 0.00010429453565691127 0.08469066990132904 0.00012161175025425145']
['59852.22190458229 0.21364130366602918 6.25521128939654e-05 0.024576694833142607 1.9863972108597252e-05 6.573953726984353e-05 5.3133602529794826e-08 0.129079279585833 0.00010432758460397717 0.08456202408019617 0.00012164296829985451']
['59852.22210720926 0.21361709056042838 6.255076721904729e-05 0.024568629106669793 1.9862669322002527e-05 6.571796247593133e-05 5.3130117741116765e-08 0.12903691757704724 0.00010432074223740823 0.08458017298338114 0.00012163640795689098']
['59852.22230983623 0.21374303458622898 6.25569275447347e-05 0.024572456587897803 1.9862864636239614e-05 6.57282005020999e-05 5.3130640181894726e-08 0.12905701989442125 0.00010432176804747697 0.08468601469180773 0.0001216404557389883']
['59852.222512463195 0.21358698469497023 6.254491034326479e-05 0.02456005835760218 1.986267265944487e-05 6.569503681071939e-05 5.3130126668351156e-08 0.12899190313866693 0.00010432075976599196 0.0845950815563033 0.00012163341123227959']
['59852.22271509016 0.21340833152370603 6.253396301547167e-05 0.024526189547432256 1.9856130179638473e-05 6.560444204508603e-05 5.3112626365808854e-08 0.12881402073231227 0.0001042863980023029 0.08459431079139376 0.00012159831141391357']
['59852.22291771713 0.21350033830003762 6.253401982240607e-05 0.024545489892746526 1.985803117925781e-05 6.565606801752547e-05 5.311771129835059e-08 0.12891538809215614 0.0001042963822440011 0.08458495020788148 0.00012160690352252154']
['59852.2231203441 0.21355776066600016 6.255235056729326e-05 0.02452562847314352 1.9855789746413267e-05 6.560294124262396e-05 5.3111715750168785e-08 0.12881107391356894 0.00010428461001267472 0.08474668675243122 0.00012160623523072002']
['59852.22332297106 0.21357841997201127 6.254419098871593e-05 0.024562884694747406 1.9862529111225422e-05 6.570259690361867e-05 5.312974269509574e-08 0.12900674734636244 0.00010432000583626797 0.08457167262564882 0.0001216323947150263']
['59852.223525598034 0.2136216956227931 6.255382169962828e-05 0.024571543273556828 1.9861172776093066e-05 6.572575750223497e-05 5.312611467088056e-08 0.1290522230754035 0.00010431288222737956 0.08456947254738958 0.00012163123779610254']
['59852.223728225 0.21355623437826904 6.254268865726787e-05 0.02453682366874709 1.9858637274799915e-05 6.563288696899688e-05 5.3119332526947436e-08 0.12886987220980617 0.00010429956551890713 0.08468636216846287 0.00012161409158445721']
['59852.22393085197 0.21366149774431425 6.25534379773967e-05 0.02458543652978931 1.9864105915678603e-05 6.576292019811802e-05 5.313396044674302e-08 0.12912519185813712 0.00010432828737226157 0.08453630588617714 0.00012164425242822289']
['59852.224133478936 0.21367069236449385 6.25531008463775e-05 0.024566592323100614 1.9862670308740077e-05 6.571251433856926e-05 5.3130120380514396e-08 0.12902622018435198 0.00010432074741985336 0.08464447218014187 0.00012163761247136478']
['59852.2243361059 0.21366257941652994 6.255042711448686e-05 0.024573599988772322 1.986290142319442e-05 6.573125895421949e-05 5.313073858232664e-08 0.12906302515111517 0.00010432196125627322 0.08459955426541477 0.00012163727854798505']
['59852.22453873287 0.21366068274630098 6.254838795215799e-05 0.024579605450186705 1.9863416793639867e-05 6.574732280076816e-05 5.313211713281263e-08 0.12909456644005624 0.00010432466803382284 0.08456611630624475 0.00012163855143736709']
['59852.22474135984 0.21354299892571427 6.254543997781577e-05 0.024531791197748738 1.9857294411765796e-05 6.561942574823461e-05 5.311574053888398e-08 0.12884344116464674 0.00010429251266683717 0.08469955776106752 0.0001216094579396724']
['59852.2249439868 0.21359464862261768 6.254633426727047e-05 0.024548739025604678 1.9859321062702402e-05 6.566475903525888e-05 5.3121161572740834e-08 0.1289324528655708 0.0001043031568419244 0.08466219575704687 0.00012161904644201175']
['59852.225146613775 0.21374048190822056 6.25559696197968e-05 0.024570637875387623 1.9862610362050917e-05 6.572333567712413e-05 5.312996003073453e-08 0.1290474678329182 0.00010432043257379684 0.08469301407530236 0.00012163881776578164']
['59852.22534924074 0.21363733308893645 6.255162588404093e-05 0.024576068028854925 1.98641178722625e-05 6.573786064798243e-05 5.313399242908638e-08 0.12907598754650698 0.00010432835016944591 0.08456134554242947 0.00012164337445917695']
['59852.225551867705 0.21353794207894713 6.254392923323413e-05 0.02455275712427024 1.9859674800397e-05 6.567550693886317e-05 5.3122107776146773e-08 0.12895355632494876 0.00010430501470796745 0.08458438575399838 0.00012161940296334753']
['59852.22575449468 0.21365150436988317 6.254956687805506e-05 0.024593541606822547 1.986688398802617e-05 6.578460024978157e-05 5.314139143743852e-08 0.1291677605400344 0.00010434287808837275 0.08448374382984877 0.00012165477600323507']
['59852.22595712164 0.21396729972774417 6.260041083540936e-05 0.02457971744739218 1.9863589898555577e-05 6.57476223790684e-05 5.313258016647664e-08 0.12909515466067323 0.0001043255771982961 0.08487214506707094 0.00012166609015876066']
['59852.226159748614 0.21506807859209404 6.312726074002426e-05 0.024585460674114386 1.9862965866218406e-05 6.576298478112111e-05 5.3130910959231096e-08 0.12912531866656715 0.00010432229971753365 0.08594275992552688 0.00012193520109834539']
['59852.22636237558 0.21362692520970858 6.254785546157117e-05 0.024561829818335663 1.9860449007319033e-05 6.56997752431938e-05 5.312417868133362e-08 0.1290012070290739 0.00010430908092079325 0.08462571818063469 0.0001216249093951654']
['59852.226565002544 0.21374336318363396 6.256033021775127e-05 0.02456159046515078 1.986108270448344e-05 6.569913500382374e-05 5.312587374076452e-08 0.12899994992201042 0.00010431240916220295 0.08474341326162355 0.00012163417949810375']
['59852.226767629516 0.21388515187890775 6.256872082025243e-05 0.024592834211250858 1.9864157418737952e-05 6.578270805647138e-05 5.313409821088554e-08 0.12916404522715788 0.00010432855787152286 0.08472110665174987 0.00012165234404907446']
['59852.22697025648 0.2139404137796809 6.257614044095447e-05 0.024580523792876542 1.9863897474241865e-05 6.574977925082765e-05 5.313340289237324e-08 0.12909938966846923 0.00010432719261681652 0.08484102411121167 0.0001216549895063593']
['59852.227172883446 0.21367955782362713 6.255361330576481e-05 0.024572619357184987 1.9863745405507873e-05 6.57286358892703e-05 5.313299612782358e-08 0.12905787477513123 0.00010432639393649093 0.0846216830484959 0.00012164271868631944']
['59852.22737551042 0.21366768988163684 6.255532762874934e-05 0.024549510150376194 1.985933950134068e-05 6.566682169608455e-05 5.3121210893756393e-08 0.1289365028906313 0.00010430325368351199 0.08473118699100554 0.00012162375484956558']
['59852.22757813738 0.21365018600456778 6.255001401975423e-05 0.024533706306302507 1.985677018470076e-05 6.562454842038402e-05 5.311433829806544e-08 0.12885349950789132 0.00010428975937342836 0.08479668649667646 0.00012160944932051555']
['59852.227780764355 0.2138839530224576 6.25701175048644e-05 0.02459788786840621 1.986593006915475e-05 6.579622594751283e-05 5.313883982561171e-08 0.12919058754415028 0.00010433786801026654 0.08469336547830733 0.000121661046787788']
['59852.22798339132 0.21355983373418166 6.255137723437345e-05 0.024503232029021427 1.985263089853851e-05 6.554303359909938e-05 5.310326623329915e-08 0.12869344553057474 0.00010426801942509722 0.08486638820360692 0.0001215915073874378']
['59852.228186018285 0.2136017595329711 6.25503807110869e-05 0.024575515621760823 1.986268082155651e-05 6.57363830291652e-05 5.313014850096315e-08 0.12907308624874383 0.00010432080263422538 0.08452867328422728 0.00012163626099708473']
['59852.22838864526 0.21383324876190432 6.256326472530281e-05 0.024594877388466344 1.9864291199248683e-05 6.578817329602529e-05 5.31344560567607e-08 0.1291747761999283 0.0001043292605002557 0.08465847256197603 0.00012165014052445041']
['59852.22859127222 0.2134080967596365 6.253115897198579e-05 0.02454207383284722 1.985800192974362e-05 6.564693049115787e-05 5.311763305961502e-08 0.12889744660108834 0.00010429622862260305 0.08451065015854817 0.00012160530065452757']
['59852.22879389919 0.21353278834243794 6.25375000853894e-05 0.024586801151596078 1.9866337985050276e-05 6.57665703881348e-05 5.313993094882413e-08 0.1291323589894752 0.00010434001042568424 0.08440042935296274 0.00012164611252548095']
['59852.22899652616 0.21363492528980724 6.255538488527552e-05 0.024541212055238897 1.985854509697353e-05 6.564462534550727e-05 5.3119085962969065e-08 0.12889292045818748 0.0001042990813916677 0.08474200483161975 0.0001216202062047696']
['59852.229199153124 0.2137145792675979 6.255603731430658e-05 0.024578714893101393 1.986386850560676e-05 6.574494067367181e-05 5.313332540495355e-08 0.12908988914444008 0.00010432704047062375 0.08462469012315782 0.00012164451971966549']
['59852.229401780096 0.213545190827432 6.254442913779804e-05 0.024525867179200033 1.9856086400677297e-05 6.560357975100782e-05 5.3112509262647936e-08 0.12881232762184894 0.00010428616807078412 0.08473286320558307 0.00012160349693598814']
['59852.22960440706 0.2136657337275249 6.255342267097153e-05 0.024528222763011854 1.985620021766231e-05 6.560988063852914e-05 5.3112813708627304e-08 0.12882469938556648 0.00010428676584906675 0.08484103434195842 0.00012160863546274702']
['59852.229807034026 0.21377412456179767 6.256858441366332e-05 0.02477930955068383 1.993646846799896e-05 6.628150590580746e-05 5.332752108365951e-08 0.13014343251409577 0.0001047083427941122 0.0836306920477019 0.00012197813249193079']
['59852.230009661 0.2137410297800324 6.255627027375616e-05 0.024586363321593613 1.9863918442019838e-05 6.576539924848562e-05 5.313345897851627e-08 0.12913005946215134 0.00010432730274170084 0.08461097031788106 0.00012164486445354662']
['59852.23021228796 0.21371979076510725 6.255713207276003e-05 0.02456888263226959 1.9862850187873187e-05 6.57186406247113e-05 5.313060153434958e-08 0.12903824911906298 0.00010432169216319952 0.08468154164604427 0.00012164049584312827']
['59852.23041491493 0.21352257814004058 6.254097873453853e-05 0.024528918446294012 1.9856482066270058e-05 6.561174150295236e-05 5.311356761785633e-08 0.1288283531843173 0.00010428824614637637 0.08469422495572329 0.00012160350449457115']
['59852.2306175419 0.21354845372243722 6.254261660303546e-05 0.024557182581809833 1.9859174997760885e-05 6.568734447571812e-05 5.3120770867573525e-08 0.12897679927421132 0.00010430238969412231 0.0845716544482259 0.00012161647662820545']
['59852.230820168865 0.21354146120970663 6.254068080435517e-05 0.024574794450690975 1.9864594014805692e-05 6.573445398814702e-05 5.3135266049916046e-08 0.12906929858556185 0.00010433085091809713 0.08447216262414478 0.00012163989151905081']
['59852.23102279584 0.21373561273313924 6.255669084576956e-05 0.024565157183417237 1.9861883435515184e-05 6.570867552218882e-05 5.31280155945761e-08 0.1290186826860149 0.00010431661468232766 0.08471693004712433 0.0001216359143853262']
['59852.2312254228 0.21350728052039122 6.253877415297872e-05 0.024557662033713637 1.9860042809471564e-05 6.568862694866711e-05 5.312309215368155e-08 0.12897931740395818 0.00010430694752873721 0.08452796311643304 0.00012161840968915856']
['59852.23142804977 0.2134874393736376 6.254196039041377e-05 0.024523781615902008 1.98566791348135e-05 6.559800113406645e-05 5.3114094751180984e-08 0.1288013740330988 0.00010428928117023898 0.0846860653405388 0.00012160489700863714']
['59852.23163067674 0.21366435138547554 6.255737339673364e-05 0.024569659388439056 1.9863159954726147e-05 6.572071834881126e-05 5.313143012133873e-08 0.12904232872079335 0.00010432331908994825 0.08462202266468219 0.000121642015242438']
['59852.231833303704 0.21351319374402813 6.253725622160136e-05 0.02453529941304359 1.985757085313785e-05 6.562880977858093e-05 5.311647998444428e-08 0.1288618666651449 0.00010429396456479964 0.08465132707888323 0.00012160649431823081']
['59852.23203593067 0.21365843692768133 6.25493012243929e-05 0.02455662357822765 1.986034723591564e-05 6.568584921213306e-05 5.3123906455755206e-08 0.1289738633310276 0.00010430854640711997 0.08468457359665374 0.00012162519450026026']
['59852.23223855764 0.21351752566599547 6.25356590333856e-05 0.024544648131669948 1.985859241914251e-05 6.565381641355506e-05 5.311921254376085e-08 0.1289109670780985 0.00010429932993247117 0.08460655858789698 0.00012161027454578966']
['59852.232441184606 0.21381566759303194 6.256316018212318e-05 0.02455632812873796 1.9861203234237712e-05 6.568505892227226e-05 5.312619614254909e-08 0.1289723116005145 0.00010431304219662665 0.08484335599251744 0.00012163617794179994']
['59852.23264381157 0.21386084111298073 6.256600220528677e-05 0.024564949091371965 1.9861400069922186e-05 6.570811890239683e-05 5.312672265300558e-08 0.12901758976560906 0.00010431407599749048 0.08484325134737167 0.00012163852631120687']
['59852.23284643854 0.21352524964924513 6.254470698958321e-05 0.024544669239209956 1.9858130038481904e-05 6.565387287354378e-05 5.3117975734219244e-08 0.12891107793702708 0.00010429690146261505 0.08461417171221805 0.00012161284482781929']
['59852.23304906551 0.213680063314161 6.255167713598207e-05 0.024575582817532058 1.986234508092065e-05 6.573656276931892e-05 5.312925043740359e-08 0.12907343916771039 0.00010431903929054964 0.08460662414645062 0.00012163541536504647']
['59852.23325169248 0.21378767788433764 6.25585383081706e-05 0.024582262379919992 1.9864735619105186e-05 6.57544297503564e-05 5.313564482343248e-08 0.12910852090294114 0.0001043315946381575 0.0846791569813965 0.00012164971169302319']
['59852.233454319445 0.213506989424142 6.254132227638732e-05 0.024590422245623553 1.986792701351539e-05 6.577625635475452e-05 5.314418139815079e-08 0.12915137734045984 0.00010434835616342117 0.08435561208368217 0.00012165523591727213']
['59852.23365694641 0.21348176566211613 6.253898791134717e-05 0.024520888739081075 1.9856475012599368e-05 6.559026305598565e-05 5.31135487501831e-08 0.12878618035231656 0.0001042882090997866 0.08469558530979956 0.00012160244884958707']
['59852.23385957338 0.21368575071744916 6.255490079473219e-05 0.024587771880979707 1.986516511584919e-05 6.576916696594672e-05 5.3136793672673655e-08 0.1291374573580867 0.0001043338503983676 0.08454829335936245 0.00012164977580081164']
['59852.23406220035 0.21361720166766748 6.254845809571396e-05 0.024541601641380105 1.985773832040721e-05 6.564566743895489e-05 5.311692793812032e-08 0.1288949666038871 0.00010429484411978578 0.08472223506378038 0.0001216130096664074']
['59852.23426482731 0.21350058163853242 6.25376604181984e-05 0.024560248759628728 1.9861150474005254e-05 6.569554611195804e-05 5.312605501562818e-08 0.12899290314931056 0.00010431276509456542 0.08450767848922186 0.00012162282652633874']
['59852.234467454284 0.21356615478672256 6.254574692793601e-05 0.024579940102720535 1.9864414441482057e-05 6.574821795379299e-05 5.3134785714082365e-08 0.12909632406891036 0.00010432990778089315 0.0844698307178122 0.00012164168741160691']
['59852.23467008125 0.21382053054996675 6.256226975949401e-05 0.02458821205942957 1.98630260494442e-05 6.577034438739442e-05 5.3131071941716415e-08 0.1291397692196931 0.00010432261580590442 0.08468076133027364 0.00012164393024744818']
['59852.23487270822 0.21367061788128186 6.255000380001849e-05 0.024538065463555702 1.9856462387353267e-05 6.563620861239345e-05 5.3113514979253274e-08 0.128876394241364 0.00010428814279072095 0.08479422363991787 0.00012160805771872245']
['59852.235075335186 0.21359343660774832 6.254862194730827e-05 0.024553127793788557 1.9859567634168843e-05 6.567649843274709e-05 5.312182112009729e-08 0.12895550311863738 0.00010430445186013049 0.08463793348911094 0.00012162133359468467']
['59852.23527796215 0.2135669634019298 6.254681812869281e-05 0.024566681951881168 1.986139991202178e-05 6.571275408417378e-05 5.312672223064205e-08 0.12902669092374563 0.00010431407516818163 0.08454027247818416 0.00012162865918942305']
['59852.23548058912 0.2135999703438896 6.254794775735396e-05 0.02457323727783279 1.9864608500264846e-05 6.573028874852301e-05 5.3135304796679535e-08 0.12906112015668483 0.00010433092699718934 0.08453885018720478 0.00012164369320581126']
['59852.23568321609 0.2137240260559251 6.256121398962497e-05 0.02456431541809888 1.9860556253132666e-05 6.570642390687218e-05 5.3124465550264134e-08 0.129014261649679 0.00010430964418662115 0.08470976440624611 0.000121632262850755']
['59852.23588584305 0.2138415841647778 6.255735478667922e-05 0.024620221910397633 1.9868782914517966e-05 6.585596667326337e-05 5.3146470824627386e-08 0.12930788818486152 0.00010435285144179605 0.08453369597991628 0.00012166733432577544']
['59852.236088470025 0.2137237895134093 6.255565081280351e-05 0.0245745146192344 1.9863435433869984e-05 6.573370547454119e-05 5.3132166993060755e-08 0.1290678288825336 0.0001043247659341911 0.08465596063087572 0.00012164237023273249']
['59852.23629109699 0.21357759991844855 6.254922409816585e-05 0.0245462068932365 1.9857647577686766e-05 6.565798590277218e-05 5.311668521286808e-08 0.12891915385103206 0.00010429436752986748 0.08465844606741649 0.00012161299492133908']
['59852.23649372396 0.21356000020481503 6.254975892644218e-05 0.024549595920097554 1.986040489333205e-05 6.566705111919584e-05 5.312406068202122e-08 0.1289369533618569 0.00010430884922968515 0.08462304684295813 0.00012162568959466261']
['59852.23669635093 0.21345644170831904 6.25362843114719e-05 0.024531806550996915 1.985587044053859e-05 6.561946681622352e-05 5.311193159670531e-08 0.1288435218014544 0.00010428503382635813 0.08461291990686465 0.00012159833525032285']
['59852.23689897789 0.2135607124109704 6.254430525413598e-05 0.02454509781470015 1.9859202664612286e-05 6.565501925854802e-05 5.312084487288714e-08 0.12891332885871928 0.00010430253500321579 0.08464738355225113 0.000121617469665421']
['59852.237101604864 0.2137353714914772 6.256074783586251e-05 0.024597080463966768 1.986544733619983e-05 6.579406624318322e-05 5.31375485762677e-08 0.1291863469746154 0.00010433533264810836 0.0845490245168618 0.00012165405381068812']
['59852.23730423183 0.2136929453780796 6.255168715414963e-05 0.02457417236635856 1.986191411679297e-05 6.573278999156679e-05 5.3128097663097445e-08 0.12906603133591682 0.0001043167758234925 0.08462691404216277 0.00012163347928937737']
['59852.23750685879 0.21371579370397353 6.25527876407865e-05 0.02458559993581092 1.9865647285206094e-05 6.576335728847215e-05 5.3138083414464556e-08 0.12912605008304057 0.00010433638280045218 0.08458974362093297 0.00012165086114580458']
['59852.237709485766 0.2137569831399368 6.256206518006184e-05 0.024549857207685603 1.985887412108821e-05 6.566775003030855e-05 5.311996606068752e-08 0.12893832567061767 0.00010430080945949691 0.08481865746931913 0.00012162512426920922']
['59852.23791211273 0.21382494538136945 6.25645353392641e-05 0.024613100633875364 1.9868788082949722e-05 6.583691816301727e-05 5.314648464952591e-08 0.12927048652245465 0.00010435287858692082 0.0845544588589148 0.00012167104976778437']
['59852.238114739695 0.21355143456841014 6.254354116977112e-05 0.02455451632950992 1.985962908399057e-05 6.568021258944818e-05 5.3121985490565864e-08 0.12896279584826642 0.00010430477460079081 0.08458863872014372 0.00012161899747398278']
['59852.23831736667 0.21361367673277115 6.254608696546015e-05 0.024548290904157097 1.9857266601054194e-05 6.566356036730109e-05 5.311566614876259e-08 0.12893009928653937 0.00010429236660217539 0.08468357744623178 0.00012160966543072739']
['59852.23851999363 0.21372559628041007 6.255877894313931e-05 0.024581099747131113 1.9863622671826392e-05 6.57513198553085e-05 5.313266783081364e-08 0.12910241463829367 0.00010432574932681929 0.08462318164211641 0.00012164482231257895']
['59852.238722620605 0.21364093692637576 6.255057925914746e-05 0.024540979167161435 1.985859453785316e-05 6.564400239947844e-05 5.311921821104274e-08 0.12889169730652014 0.00010429934106015315 0.08474923961985562 0.0001216179571906922']
['59852.23892524757 0.21359365150682563 6.254573808273195e-05 0.024545608009164516 1.9857964447655876e-05 6.5656383963942e-05 5.311753279979079e-08 0.1289160084514943 0.00010429603176289852 0.08467764305533132 0.00012161262925289152']
['59852.239127874534 0.21391865482016598 6.257015598698553e-05 0.024604182806791476 1.986764402298602e-05 6.581306410819307e-05 5.314342443442647e-08 0.12922364919533338 0.00010434686986862407 0.08469500562483259 0.00012166878675985582']
['59852.23933050151 0.2136911175209551 6.25550759264063e-05 0.02453915758002345 1.9858874158983415e-05 6.563912988523839e-05 5.3119966162052376e-08 0.12888213014718197 0.00010430080965852634 0.08480898737377313 0.00012162152942461544']
['59852.23953312847 0.21371728106926052 6.255670208113481e-05 0.02457829621208376 1.9864091424821494e-05 6.574382075512501e-05 5.313392168554069e-08 0.12908769018951555 0.00010432821126481877 0.08462959087974498 0.00012164586569622707']
['59852.23973575544 0.2136953519388452 6.255894560763768e-05 0.0247119797826652 1.990917331971526e-05 6.610140732769997e-05 5.325451002867166e-08 0.12978980978290547 0.00010456498592287429 0.08390554215593973 0.00012185014549269224']
['59852.23993838241 0.213691857536264 6.255648315188348e-05 0.024569816865006578 1.9861205635303973e-05 6.572113957862878e-05 5.312620256509639e-08 0.12904315580360598 0.00010431305480726878 0.08464870173265801 0.00012163275458344329']
['59852.24014100937 0.21368609949897266 6.255251248383925e-05 0.02457058133851675 1.9862446916518953e-05 6.572318444817511e-05 5.312952283469523e-08 0.12904717089557116 0.00010431957414138106 0.0846389286034015 0.00012163630365593968']
['59852.240343636346 0.21352494556934493 6.254633725576774e-05 0.024504610711330817 1.9851491877444767e-05 6.554672139917488e-05 5.310021949653689e-08 0.12870068650909045 0.00010426203717145362 0.08482425906025448 0.0001215837846888055']
['59852.24054626331 0.213414893158906 6.253168526655786e-05 0.024548779501022598 1.9859906167092647e-05 6.566486730186116e-05 5.312272665267247e-08 0.12893266544654727 0.00010430622986918409 0.08448222771235872 0.00012161414906086758']
['59852.240748890275 0.21350473338660653 6.253954405118199e-05 0.02453243864370783 1.985701743710534e-05 6.562115758394511e-05 5.3114999666844944e-08 0.12884684161611257 0.00010429105796799024 0.08465789177049396 0.00012160517810608409']
['59852.24095151725 0.21347085952586525 6.253656202473521e-05 0.024525055084068208 1.985647603108146e-05 6.560140749967183e-05 5.311355147449334e-08 0.12880806241632461 0.00010428821444895725 0.08466279710954064 0.0001216012058444539']
['59852.24115414421 0.21386484972020708 6.25739862150091e-05 0.02475186575847332 1.9932607561159e-05 6.62080972471942e-05 5.331719364822426e-08 0.12999929494996493 0.00010468806492205358 0.08386555477024216 0.000121963497358678']
['59852.24135677118 0.21349872018973767 6.253972813522039e-05 0.024545071483117215 1.9858699326066692e-05 6.565494882490796e-05 5.311949850620513e-08 0.1289131905625904 0.00010429989141841751 0.08458552962714727 0.00012161284860211506']
['59852.24155939815 0.21351845567201433 6.253837035990062e-05 0.024569162775693917 1.9859339534568932e-05 6.571938997279124e-05 5.3121210982637744e-08 0.1290397204605773 0.0001043032538580301 0.08447873521143703 0.00012161503415550548']
['59852.241762025114 0.2135512737725587 6.254246738418585e-05 0.02454953599561875 1.985910091923096e-05 6.566689082882586e-05 5.312057271691446e-08 0.12893663863245142 0.00010430200062621304 0.08461463514010728 0.00012161606621303164']
['59852.24196465209 0.21354508525355553 6.254411304183363e-05 0.02454541105175563 1.985919019597557e-05 6.565585712788818e-05 5.312081152086753e-08 0.1289149740113216 0.00010430246951667843 0.08463011124223394 0.00012161731465324867']
['59852.24216727905 0.21344935268089674 6.253555145061657e-05 0.024539366454697308 1.9856392790740364e-05 6.563968859846244e-05 5.3113328817153006e-08 0.12888322717803208 0.00010428777726229184 0.08456612550286466 0.00012160031119015324']
['59852.24236990602 0.2134858851323575 6.254233825450868e-05 0.024541848670481724 1.9859115564754107e-05 6.564632821042733e-05 5.312061189182879e-08 0.1288962640256393 0.00010430207754597746 0.0845896211067182 0.00012161606577565514']
['59852.24257253299 0.21367269900906255 6.25574168684998e-05 0.024719590961146863 1.992383747990913e-05 6.612176626346655e-05 5.329373479474133e-08 0.12982978445980498 0.00010464200357095132 0.08384291454925757 0.000121915459711237']
['59852.24277515995 0.21349142383541558 6.253737706584663e-05 0.024561102729075628 1.9859713529873086e-05 6.569783037176853e-05 5.312221137257639e-08 0.12899738828296026 0.00010430521811908135 0.08449403555245533 0.00012161620803636749']
['59852.24297778692 0.21354401956670094 6.254164866550812e-05 0.02454889201220855 1.9858061684140457e-05 6.566516825499388e-05 5.311779289503734e-08 0.12893325636664155 0.00010429654245872089 0.08461076320005939 0.00012161096408894892']
['59852.24318041389 0.2136930053778141 6.255263923088744e-05 0.024591207558480547 1.9863549157135052e-05 6.577835696690686e-05 5.313247118835118e-08 0.129155501882776 0.00010432536322024713 0.08453750349503811 0.00012164133378825658']
['59852.243383040855 0.21369434173062807 6.255831959049656e-05 0.024550129669886803 1.9858798203928578e-05 6.566847883209219e-05 5.31197629919275e-08 0.12893975666957355 0.000104300410734919 0.08475458506105452 0.00012162285570343887']
['59852.24358566783 0.21377925253820407 6.256158382530737e-05 0.024641706941676222 1.9871023170320954e-05 6.591343640318726e-05 5.3152463224372527e-08 0.12942072973569446 0.00010436461749118148 0.0843585228025096 0.00012167960040537437']
['59852.24378829479 0.21387563655481073 6.256711605810021e-05 0.024622532487644233 1.9868782066325423e-05 6.586214717393886e-05 5.3146468555820064e-08 0.12932002356956004 0.00010435284698700329 0.08455561298525069 0.00012167234971890985']
['59852.24399092176 0.2137676318790919 6.255831351149197e-05 0.02456896465727501 1.9859971147473464e-05 6.571886003118307e-05 5.31229004669382e-08 0.12903867992266288 0.00010430657115269678 0.08472895195642902 0.0001216281356226211']
['59852.24419354873 0.21352774103729644 6.254097474567386e-05 0.024543751205455315 1.9858028437004476e-05 6.565141724984669e-05 5.311770396317121e-08 0.12890625633117286 0.00010429636784141007 0.08462148470612357 0.00012161046775277913']
['59852.244396175694 0.2137906263732526 6.255893591372868e-05 0.02460456436006471 1.986707871415805e-05 6.581408471473908e-05 5.314191230510974e-08 0.12922565315160037 0.00010434390080965362 0.08456497322165224 0.00012166047056802322']
['59852.24459880266 0.21373488663784437 6.255596573508302e-05 0.024564525677154038 1.986127047151864e-05 6.570698632314039e-05 5.312637599373598e-08 0.12901536595143928 0.00010431339533360632 0.08471952068640509 0.00012163278051197432']
['59852.24480142963 0.21351529282460777 6.253855309805979e-05 0.024578025059362588 1.9864335019408667e-05 6.574309545603412e-05 5.31345732701232e-08 0.12908626606808082 0.00010432949064815478 0.08442902675652694 0.00012163763086521482']
['59852.2450040566 0.21345166119258063 6.253243321307224e-05 0.024552168772669684 1.985956744027857e-05 6.567393317305637e-05 5.3121820601465436e-08 0.12895046624301307 0.00010430445084179922 0.08450119494956757 0.00012161300781148639']
['59852.24520668356 0.21342969586589117 6.253524504516677e-05 0.024537443795851665 1.9858194313726085e-05 6.563454573024122e-05 5.311814766233403e-08 0.12887312917989321 0.00010429723904267902 0.08455656668599795 0.00012160826840632502']
['59852.24540931053 0.21353146113343083 6.253978951382661e-05 0.024552543241010503 1.986206530112567e-05 6.5674934828308e-05 5.312850206198597e-08 0.12895243298850054 0.00010431756985885331 0.08457902814493029 0.00012162804221761723']
['59852.2456119375 0.21349124395100474 6.253834519095856e-05 0.024552269396763894 1.9858452741637158e-05 6.567420232972842e-05 5.311883892417403e-08 0.1289509947309028 0.00010429859633212793 0.08454024922010195 0.00012161102670430696']
['59852.24581456447 0.21379369088137942 6.256109082078263e-05 0.024594543599447707 1.986444066178306e-05 6.578728045279394e-05 5.313485585005739e-08 0.12917302310634302 0.0001043300454925581 0.0846206677750364 0.00012164969575451249']
['59852.246017191435 0.21364567085282035 6.255239872213646e-05 0.0245853476175567 1.986454788378419e-05 6.576268236918827e-05 5.3135142655292486e-08 0.12912472488212554 0.00010433060863332034 0.08452094597069482 0.00012164570885852158']
['59852.2462198184 0.21364160696515527 6.254929430494179e-05 0.024561008045280473 1.9861160895313913e-05 6.569757710464198e-05 5.3126082891305263e-08 0.12899689099412015 0.00010431281982832938 0.08464471597103512 0.00012162885594538713']
['59852.24642244537 0.21345041763517666 6.254175783856402e-05 0.024496605529604455 1.985259186468384e-05 6.552530855476985e-05 5.310316182269548e-08 0.12865864248741837 0.0001042678144153563 0.08479177514775829 0.00012158638326923278']
['59852.24662507234 0.21344153802626387 6.253416746448623e-05 0.024543628653054893 1.9856676387590124e-05 6.565108943774056e-05 5.311408740270737e-08 0.12890561267360764 0.00010428926674154478 0.08453592535265622 0.00012160087687992009']
['59852.2468276993 0.21354443726922429 6.254550214400576e-05 0.024559049071088718 1.9860550278157797e-05 6.569233709748219e-05 5.312444956796522e-08 0.12898660226412142 0.00010430961280545062 0.08455783500510286 0.00012162415533959057']
['59852.247030326274 0.21377255366557965 6.25583016712253e-05 0.02458810104552831 1.9863802401115325e-05 6.577004743930809e-05 5.313314858383469e-08 0.12913918616348904 0.00010432669328316874 0.0846333675020906 0.00012164538642870265']
['59852.24723295324 0.2138121124244824 6.25605457791744e-05 0.024587817475582273 1.9863442524809774e-05 6.576928892571776e-05 5.3132185960424095e-08 0.12913769682553716 0.00010432480317652193 0.08467441559894523 0.00012164491952403198']
['59852.24743558021 0.2136225941913844 6.255072527384797e-05 0.02454389165786605 1.9858205189517052e-05 6.5651792942207e-05 5.3118176753693565e-08 0.12890699400139732 0.0001042972961634299 0.08471560018998708 0.0001216162785949587']
['59852.247638207176 0.2137031567472064 6.255687444339203e-05 0.024566430455823227 1.9860510409899224e-05 6.571208136416051e-05 5.312434292543708e-08 0.12902537004108838 0.00010430940341333627 0.08467778670611803 0.00012162982438765766']
['59852.24784083414 0.2135320656622324 6.254357011574701e-05 0.024514227368471267 1.985344724287024e-05 6.557244473564417e-05 5.31054498507052e-08 0.12875119416213904 0.0001042723069478479 0.08478087150009336 0.00012159116809641057']
['59852.24804346111 0.21345530497231305 6.253505916042589e-05 0.024544913239397385 1.9858859569535072e-05 6.565452554305545e-05 5.311992713713102e-08 0.12891235945061652 0.00010430073303327244 0.08454294552169653 0.00012161116945197071']
['59852.24824608808 0.21370031048055602 6.255328408442909e-05 0.024588975895822644 1.9865682820673095e-05 6.577238755273344e-05 5.313817846732554e-08 0.1291437809654551 0.00010433656943630829 0.08455652951510093 0.00012165127648933599']
['59852.24844871504 0.21366820227079045 6.254624619018996e-05 0.02457939253663345 1.9862215538535886e-05 6.57467532840547e-05 5.3128903927977114e-08 0.1290934481966043 0.00010431835892088176 0.08457475407418616 0.00012163203903754044']
['59852.248651342015 0.21400468680780357 6.263533374712789e-05 0.024576464980799198 1.9862077359292634e-05 6.573892244401774e-05 5.312853431605113e-08 0.12907807237814706 0.00010431763318956215 0.08492661442965652 0.00012167725189157643']
['59852.24885396898 0.21386586465885393 6.256618887457685e-05 0.024586984799348472 1.9863623713501253e-05 6.576706162254793e-05 5.3132670617161597e-08 0.12913332352598988 0.0001043257547978007 0.08473254113286405 0.00012164863790614369']
['59852.24905659595 0.2136663252001297 6.25486948474267e-05 0.0245733782370424 1.986079359011937e-05 6.573066579650592e-05 5.312510039656014e-08 0.12906186048866805 0.00010431089070440846 0.08460446471146166 0.00012162689318840448']
['59852.24925922292 0.2136312793835634 6.255141498057123e-05 0.024536626206485567 1.985697901126863e-05 6.563235878252636e-05 5.3114896882612086e-08 0.1288688351180965 0.00010429085615162096 0.08476244426546692 0.00012161111048300532']
['59852.24946184988 0.2136138684954209 6.254547093223986e-05 0.024556938635075923 1.985964625471646e-05 6.568669194918782e-05 5.3122031420076816e-08 0.12897551804136517 0.00010430486478317469 0.08463835045405574 0.00012162006722400715']
['59852.249664476854 0.21379155797519284 6.255513215649012e-05 0.0246145521486672 1.9869442084027316e-05 6.584080078073308e-05 5.314823401934585e-08 0.12927811002451262 0.00010435631346653004 0.08451344795068022 0.00012166916092190585']
['59852.24986710382 0.2136036291706162 6.254240847296209e-05 0.024538361468056276 1.9856735389275866e-05 6.563700038683788e-05 5.3114245224723105e-08 0.1288779488868502 0.00010428957662434803 0.08472568028376601 0.00012160538084346679']
['59852.250069730784 0.21357299163194193 6.254597531827153e-05 0.02456112618400772 1.9861796175656452e-05 6.569789311073293e-05 5.312778218553659e-08 0.1289975114706288 0.00010431615638475028 0.08457548016131314 0.00012163001073502176']
['59852.250272357756 0.21358494743292633 6.254300999351829e-05 0.024538282002551117 1.9856273259968592e-05 6.563678782670424e-05 5.311300908751974e-08 0.12887753152600376 0.00010428714947462496 0.08470741590692257 0.00012160360868244042']
['59852.25047498472 0.21362548682702442 6.254926402538669e-05 0.024586091751947994 1.9864728916590374e-05 6.57646728341748e-05 5.313562689505662e-08 0.12912863315098738 0.00010433155943587382 0.08449685367603704 0.00012164491244782416']
['59852.25067761169 0.21372144242928787 6.255721478659609e-05 0.024572390927974877 1.9861381082954443e-05 6.572802487014534e-05 5.312667186527834e-08 0.1290566750418849 0.00010431397627602125 0.08466476738740297 0.00012163392112552585']
['59852.25088023866 0.21360511318928374 6.254455149623417e-05 0.024558604593600153 1.9860396414203678e-05 6.569114817665197e-05 5.312403800142973e-08 0.12898426782353023 0.0001043088046964479 0.08462084536575351 0.00012162297340168427']
['59852.25108286562 0.21349906371912708 6.253723215027647e-05 0.024558894736776964 1.9860279461472226e-05 6.569192427279977e-05 5.312372516772689e-08 0.12898579168475297 0.00010430819044890875 0.08451327203437412 0.00012161868277424892']
['59852.251285492595 0.21354196703267608 6.253945517292148e-05 0.024573982126126655 1.9862710531414227e-05 6.573228112310826e-05 5.313022797105919e-08 0.12906503217503495 0.00010432095867339405 0.08447693485764113 0.00012163077682832518']
['59852.25148811956 0.2137551024958313 6.255634574997915e-05 0.024598584569055497 1.9864936654131218e-05 6.579808953326391e-05 5.3136182566594287e-08 0.12919424668621585 0.00010433265049438666 0.08456085580961545 0.0001216494897349544']
['59852.251690746525 0.2137655151682271 6.256759355892792e-05 0.02474670676964343 1.9929612738467717e-05 6.61942976073012e-05 5.3309182877888104e-08 0.12997219942039617 0.00010467233581128003 0.08379331574783092 0.00012194671642953153']
['59852.2518933735 0.21373622349536087 6.256451550378021e-05 0.024758479551231508 1.9935138683880113e-05 6.62257883028253e-05 5.3323964080033294e-08 0.130034031256468 0.00010470135863382413 0.08370219223889286 0.00012197005001225267']
['59852.25209600046 0.21355961144364016 6.253849909637376e-05 0.024549262702352283 1.985829718638278e-05 6.566615980404817e-05 5.311842283362516e-08 0.12893520326865696 0.00010429777934024571 0.0846244081749832 0.00012161040516556849']
['59852.25229862743 0.2136112385138888 6.254833477839913e-05 0.024533311898011327 1.9856735064986114e-05 6.562349342829768e-05 5.311424435728921e-08 0.1288514280357738 0.00010428957492114557 0.08475981047811501 0.00012160842742501002']
['59852.2525012544 0.2136012904221129 6.254763869860573e-05 0.02457775980150832 1.9864490025805806e-05 6.574238592496352e-05 5.313498789254867e-08 0.1290848729070815 0.00010433030475738344 0.08451641751503139 0.00012164300061055642']
['59852.252703881364 0.21385139148670657 6.2569070137479e-05 0.024597344257858346 1.9864838835526056e-05 6.579477185833956e-05 5.313592091424911e-08 0.129187732446735 0.00010433213674120828 0.08466365903997156 0.00012165559294522775']
['59852.252906508336 0.21364476964643836 6.255089861212707e-05 0.024572853499627807 1.9863530112421312e-05 6.572926219056714e-05 5.3132420246160735e-08 0.12905910451485195 0.0001043252631954901 0.08458566513158641 0.00012164035291790666']
['59852.2531091353 0.21358438689371936 6.254668611081548e-05 0.02454403829464341 1.9856823207507685e-05 6.565218517696256e-05 5.3114480127339706e-08 0.12890776415253893 0.00010429003785455718 0.08467662274118043 0.00012160797646186638']
['59852.253311762266 0.21360543327248252 6.254217863361263e-05 0.024548110333582077 1.985863042002428e-05 6.566307736394661e-05 5.3119314191293214e-08 0.12892915091167056 0.00010429952951693426 0.08467628236081196 0.00012161379841815875']
['59852.25351438924 0.2134965027594442 6.253803946363804e-05 0.02454521853989905 1.9858267435560824e-05 6.565534218312215e-05 5.311834325395498e-08 0.1289139629196379 0.0001042976230859287 0.08458253983980632 0.00012161003478878704']
['59852.2537170162 0.213626231311257 6.254969199759669e-05 0.024550674351555855 1.9860191141222732e-05 6.56699357863786e-05 5.312348892227678e-08 0.1289426173926253 0.00010430772658205218 0.08468361391863169 0.00012162469236840999']
['59852.25391964317 0.21364427228050448 6.254797279575569e-05 0.02458194197059963 1.9864693382660375e-05 6.575357269611863e-05 5.313553184630693e-08 0.12910683808088044 0.00010433137280809021 0.08453743419962403 0.00012164408844197608']
['59852.25412227014 0.21355396393295517 6.25476260360928e-05 0.024540715681797755 1.9856723629544463e-05 6.564329760959504e-05 5.311421376893517e-08 0.12889031345482013 0.00010428951486105286 0.08466365047813504 0.00012160801138372701']
['59852.254324897105 0.21381543330748332 6.255874285399462e-05 0.02463554541625716 1.987333253451215e-05 6.589695510524725e-05 5.315864048027889e-08 0.12938836878286322 0.00010437674650479071 0.0844270645246201 0.00012168854308601761']
['59852.25452752408 0.2138053025877546 6.256124364659556e-05 0.024578226106379594 1.9861797187524928e-05 6.574363323127027e-05 5.3127784892156253e-08 0.1290873219872878 0.00010431616169918556 0.08471798060046679 0.00012163786745195479']
['59852.25473015104 0.21357962919006224 6.254771590421436e-05 0.024517920696366716 1.985493809649417e-05 6.558232391868652e-05 5.310943769480058e-08 0.12877059189268233 0.00010428013706141896 0.0848090372973799 0.00012160001542098025']
['59852.25493277801 0.2137022579168057 6.255590795714171e-05 0.024569098961162467 1.986197625496697e-05 6.57192192770245e-05 5.312826387482093e-08 0.12903938530022305 0.00010431710217944839 0.08466287261658265 0.0001216359298376095']
['59852.25513540498 0.21347266732010084 6.254050005689744e-05 0.024521973902253854 1.9855533248612474e-05 6.559316572964967e-05 5.3111029651128644e-08 0.12879187973872824 0.00010428326286035964 0.0846807875813726 0.0001215989846181688']
['59852.255338031944 0.21383608355372546 6.256870223607685e-05 0.024574468651132983 1.986214253574285e-05 6.573358251570817e-05 5.31287086547776e-08 0.12906758745342953 0.00010431797550285112 0.08476849610029594 0.00012164325921529846']
['59852.25554065891 0.21410692276948076 6.264498811162e-05 0.02454928327653281 1.9859973573383645e-05 6.566621483736802e-05 5.3122906955939826e-08 0.12893531132632777 0.00010430658389382168 0.085171611443153 0.00012167274953375496']
['59852.25574328588 0.21356315813935328 6.254690738268474e-05 0.024550606755934873 1.9860569759477624e-05 6.566975497667758e-05 5.3124501678021496e-08 0.12894226237360754 0.00010430971512330685 0.08462089576574575 0.0001216249657440592']
['59852.255945912846 0.2135584698727971 6.25443059613601e-05 0.02452610977133904 1.9855190877603635e-05 6.560422865416879e-05 5.311011385216347e-08 0.12881360174022605 0.00010428146469329642 0.08474486813257107 0.00012159940002634656']
['59852.25614853982 0.2137020989678754 6.255540595983263e-05 0.024555869723384284 1.9859761010973382e-05 6.56838327461718e-05 5.3122338378489254e-08 0.12896990400937125 0.0001043054674946081 0.08473219495850415 0.00012162569368381096']
['59852.25635116678 0.21368589835929008 6.254831408257916e-05 0.024585871298577325 1.986152935518364e-05 6.576408314940735e-05 5.312706847465985e-08 0.12912747530765403 0.0001043147550167208 0.08455842305163605 0.00012163001154637555']
['59852.25655379375 0.21348515228897935 6.25373723476663e-05 0.024530290309066866 1.9855475899603727e-05 6.561541106163376e-05 5.311087624981396e-08 0.12883555834593943 0.0001042829616575826 0.08464959394303992 0.00012159711769703878']
['59852.25675642072 0.21391455014596455 6.256919324626798e-05 0.024633466253823618 1.9874528515691335e-05 6.589139360980542e-05 5.316183957803539e-08 0.12937744881209884 0.00010438302791854693 0.08453710133386572 0.00012169930345294904']
['59852.256959047685 0.21346541738283223 6.253916341031754e-05 0.02452066225185954 1.9854586173623427e-05 6.558965723143347e-05 5.3108496345817963e-08 0.12878499081859004 0.00010427828872701381 0.08468042656424218 0.00012159403134980291']
['59852.25716167465 0.21361906123068694 6.254725754187718e-05 0.024557284054268977 1.9859234820391902e-05 6.568761590165862e-05 5.312093088551361e-08 0.12897733221779925 0.00010430270388861294 0.08464172901288769 0.00012161913280600872']
['59852.25736430162 0.2137138428936794 6.255305844402478e-05 0.024616614236324885 1.9869777475472253e-05 6.584631660331811e-05 5.314913114886404e-08 0.12928894031683238 0.00010435807497621982 0.08442490257684701 0.0001216696056270583']
['59852.25756692859 0.213491854448002 6.253855046262293e-05 0.024532151651870303 1.985541274027135e-05 6.562038991722966e-05 5.311070730662152e-08 0.12884533430604153 0.00010428262993839995 0.08464652014196047 0.0001215974391212056']
['59852.25776955555 0.2135493475361056 6.254008845966122e-05 0.02455135270990498 1.98606617293518e-05 6.567175030880635e-05 5.312474768575411e-08 0.1289461801990808 0.00010431019815836031 0.0846031673370248 0.0001216218734618845']
['59852.257972182524 0.21349277832592142 6.254533648844947e-05 0.024518476011400815 1.985344175028757e-05 6.558380931587392e-05 5.310543515874415e-08 0.1287735084632396 0.00010427227810024984 0.08471926986268183 0.00012159205194694762']
['59852.25817480949 0.21348718935872713 6.253826748061805e-05 0.0244983733338427 1.9851300543691717e-05 6.553003720658389e-05 5.3099707703048174e-08 0.12866792717354358 0.00010426103226728843 0.08481926218518354 0.0001215787717856941']
['59852.25837743646 0.21374003471996683 6.255440563966252e-05 0.02461255926657898 1.9867223437808127e-05 6.583547007425679e-05 5.314229942249281e-08 0.12926764320682238 0.00010434466091285782 0.08447239151314445 0.00012165879304822452']
['59852.258580063426 0.2138659263183897 6.256471771205933e-05 0.024601998027497102 1.9865558839819574e-05 6.580722010106257e-05 5.313784683428879e-08 0.12921217451416545 0.00010433591827636331 0.08465375180422424 0.00012165659762200172']
['59852.25878269039 0.21348646948379 6.254078372803739e-05 0.024530660173579667 1.9856366502365424e-05 6.561640040223017e-05 5.311325849908884e-08 0.1288375009116579 0.00010428763919309572 0.08464896857213208 0.00012160288367381121']
['59852.25898531736 0.21374356254126137 6.256024929955482e-05 0.024593340613776434 1.9866704615727875e-05 6.57840626189107e-05 5.314091163932209e-08 0.129166704904288 0.00010434193600697414 0.08457685763697337 0.00012165946079983231']
['59852.25918794433 0.21354175933339448 6.254458175560726e-05 0.02455486882841703 1.9860294741359787e-05 6.568115547925492e-05 5.312376603948547e-08 0.12896464720807266 0.00010430827070041906 0.08457711212532182 0.00012162253098622699']
['59852.25939057129 0.2135299270696559 6.253842558213292e-05 0.02455761220008097 1.9861577861680814e-05 6.568849365002893e-05 5.312719822337913e-08 0.1289790556726942 0.00010431500977773538 0.08455087139696171 0.00012162514517656702']
['59852.259593198265 0.21347152390908092 6.253656483748887e-05 0.024539739727760322 1.985833194760083e-05 6.564068705649777e-05 5.311851581546853e-08 0.1288851876458 0.00010429796190966823 0.08458633626328091 0.00012160956705861614']
['59852.25979582523 0.2135924098748429 6.254806829754093e-05 0.024576174162322675 1.986270126920592e-05 6.573814454152897e-05 5.3130203195828335e-08 0.12907654497018212 0.00010432091002734203 0.08451586490466079 0.00012163516398100772']
['59852.2599984522 0.21360520905460312 6.254926414581193e-05 0.02454765801763434 1.9857247897442404e-05 6.566186747623365e-05 5.3115616118976545e-08 0.12892677530270139 0.0001042922683689202 0.08467843375190173 0.00012161121529989504']
['59852.26020107917 0.21382373664762638 6.257024524600251e-05 0.024760027199201003 1.9933449901804675e-05 6.622992806458179e-05 5.33194468024684e-08 0.13004215965966914 0.00010469248898006657 0.08378157698795724 0.00012196537557432544']
['59852.26040370613 0.21374636446283218 6.256780535826295e-05 0.024741967788767735 1.9929636305716405e-05 6.618162143534179e-05 5.330924591728514e-08 0.1299473098149566 0.00010467245958884667 0.08379905464787557 0.0001219469313419908']
['59852.260606333104 0.21343108372008812 6.253724307691526e-05 0.0244923023747434 1.9852326401916653e-05 6.55137981620467e-05 5.310245174350885e-08 0.1286360418841565 0.0001042664201781337 0.08479504183593162 0.00012158286535702435']
['59852.26080896007 0.2134991884211197 6.253803174997586e-05 0.024552218544882865 1.986183896447026e-05 6.567406630740521e-05 5.312789664017906e-08 0.12895072765169574 0.00010431638111591524 0.08454846076942396 0.00012162611884082245']
['59852.261011587034 0.21349976892164502 6.254074181327635e-05 0.024537619142515944 1.985926245514951e-05 6.563501476029793e-05 5.3121004804980406e-08 0.128874050118256 0.0001043028490291466 0.08462571880338901 0.00012161590645204203']
['59852.261214214006 0.21358353440869982 6.254597289438492e-05 0.024551509632433913 1.9857388747508427e-05 6.567217005664101e-05 5.311599287501423e-08 0.12894700437202689 0.00010429300812767032 0.08463653003667293 0.00012161015693445773']
['59852.26141684097 0.21373357334216092 6.255772456668905e-05 0.02458264345274438 1.9863669464647685e-05 6.575544907176279e-05 5.313279299566759e-08 0.12911052233584236 0.00010432599508743533 0.08462305100631856 0.0001216444908491351']
['59852.26161946794 0.21372272336144094 6.255452923082968e-05 0.024572021412745906 1.986153764950523e-05 6.57270364638388e-05 5.312709066091667e-08 0.12905473431064027 0.0001043147985793342 0.08466798905080067 0.00012163324516733815']
['59852.26182209491 0.21373074863158026 6.255940697562624e-05 0.0245558164469578 1.9859399311218447e-05 6.568369023849742e-05 5.312137087758315e-08 0.12896962419620694 0.00010430356781102126 0.08476112443537331 0.00012162612243778202']
['59852.26202472187 0.21377161110142184 6.255970978990389e-05 0.024600152952197415 1.986779686686578e-05 6.580228475897312e-05 5.31438332723926e-08 0.12920248399263348 0.00010434767262009338 0.08456912710878836 0.00012166410345795174']
['59852.262227348845 0.21356113953194072 6.254118825468999e-05 0.024558383936786762 1.985967052914772e-05 6.569055794770108e-05 5.312209635109742e-08 0.1289831089116952 0.00010430499227493551 0.08457803062024552 0.00012161797417233577']
['59852.26242997581 0.21382568117054407 6.256702360578548e-05 0.024575586881588986 1.986431484732402e-05 6.573657364015504e-05 5.313451931235876e-08 0.1290734605125472 0.00010432938470233204 0.08475222065799687 0.00012165218023222646']
['59852.262632602775 0.21364110340573483 6.254972691307364e-05 0.024604664872364006 1.9868186843369437e-05 6.581435357237395e-05 5.31448764100102e-08 0.12922618105233197 0.00010434972081601597 0.08441492235340287 0.00012166072731691425']
['59852.26283522975 0.21337627830271777 6.252753768531909e-05 0.024513264993905312 1.9852514050972554e-05 6.556987050590841e-05 5.310295368090067e-08 0.12874613967387247 0.00010426740572989788 0.0846301386288453 0.0001215787188065088']
['59852.26303785671 0.213380669074162 6.252549672140114e-05 0.024531089989309484 1.985632327349339e-05 6.561755010471789e-05 5.311314286734652e-08 0.12883975834721367 0.00010428741215070058 0.08454091072694833 0.00012159482749421555']
['59852.263240483684 0.2138070118294188 6.256078657801747e-05 0.02459275596975034 1.9863120001887014e-05 6.578249877039471e-05 5.313132325256834e-08 0.12916363429490726 0.00010432310925360829 0.08464337753451154 0.00012164359063099272']
['59852.26344311065 0.213551006970234 6.254418396758195e-05 0.024538450694426346 1.985614569098099e-05 6.563723905604546e-05 5.311266785668004e-08 0.12887841751274343 0.00010428647946943797 0.08467258945749057 0.00012160363789089635']
['59852.263645737614 0.21342370815470718 6.253456520827375e-05 0.024519730069472084 1.9853370418163598e-05 6.558716376194058e-05 5.3105244354372204e-08 0.12878009490268952 0.0001042719034567416 0.08464361325201766 0.00012158619040121243']
['59852.263848364586 0.21382160124176008 6.255873765822157e-05 0.024587590632028658 1.98639149590584e-05 6.576868214802253e-05 5.313344966203678e-08 0.1291365054203186 0.00010432728444883614 0.08468509582144149 0.00012164611764400274']
['59852.26405099155 0.21347086031046236 6.253509059665372e-05 0.024569780283452507 1.9861604244366844e-05 6.572104172761776e-05 5.312726879371348e-08 0.12904296367359513 0.00010431514834226285 0.08442789663686723 0.00012162354923944618']
['59852.264253618516 0.21342481329614016 6.253235035428801e-05 0.02453072093337054 1.9855551754278255e-05 6.561656292695385e-05 5.311107915143426e-08 0.12883782002820662 0.00010428336005398243 0.08458699326793354 0.00012159487663951948']
['59852.26445624549 0.21359590890745941 6.254967511766621e-05 0.024545968228107524 1.9856708561050285e-05 6.565734750386428e-05 5.311417346262705e-08 0.12891790035770762 0.00010428943571980193 0.0846780085497518 0.00012160899744706512']
['59852.26465887245 0.2136641364946364 6.255421608886014e-05 0.02458333125121756 1.9864360196819415e-05 6.575728884532342e-05 5.313464061649924e-08 0.12911413472278133 0.00010432962288245491 0.08455000177185507 0.00012164579795984351']
['59852.26486149942 0.213850753839786 6.256992916249664e-05 0.02458904524276688 1.9864282678128116e-05 6.577257304700173e-05 5.313443326384542e-08 0.12914414518259917 0.0001043292157464712 0.08470660865718682 0.0001216535297213919']
['59852.26506412639 0.213532802602043 6.253874497224871e-05 0.02454852668359031 1.985990080938651e-05 6.566419104733934e-05 5.312271232148901e-08 0.12893133762389872 0.00010430620172997116 0.08460146497814428 0.00012161775504439063']
['59852.265266753355 0.2136232108901226 6.254908160853258e-05 0.02456988533241401 1.986333605039698e-05 6.572132272024783e-05 5.313190115489286e-08 0.12904351540133407 0.00010432424396216903 0.08457969548878852 0.00012163854441890132']
['59852.26546938033 0.21381313381768186 6.257244155205678e-05 0.02474932497239101 1.9932136205225292e-05 6.620130096712127e-05 5.331593283096703e-08 0.12998595048524691 0.00010468558931315806 0.08382718333243494 0.00012196057990854568']
['59852.26567200729 0.2136134399729252 6.254805938573771e-05 0.024567425010486303 1.9860948355885056e-05 6.571474167156898e-05 5.3125514375327035e-08 0.1290305935424701 0.00010431170354981648 0.0845828464304551 0.00012162726351598381']
['59852.26587463426 0.21354256947915395 6.254169772321823e-05 0.02453618389350417 1.9856776049334242e-05 6.563117565147791e-05 5.3114353985215154e-08 0.1288665120457152 0.0001042897901750748 0.08467605743343876 0.00012160519844506455']
['59852.26607726123 0.21375352341265774 6.255687040816463e-05 0.024600043067300004 1.986631425931545e-05 6.580199083082868e-05 5.31398674854968e-08 0.12920190686607144 0.00010433988581573242 0.0845516165465863 0.00012165596494748616']
['59852.266279888194 0.21377372938129108 6.255938831851296e-05 0.024584351528811492 1.986404344367997e-05 6.576001795830494e-05 5.313379334208105e-08 0.1291194933235898 0.00010432795926302506 0.08465423605770128 0.0001216470309985982']
['59852.26648251516 0.21358376844657645 6.254596963887945e-05 0.024538681381429422 1.985726690625257e-05 6.563785611447985e-05 5.311566696512949e-08 0.12887962910414613 0.00010429236820510804 0.08470413934243032 0.00012160960646222592']
['59852.26668514213 0.21364725504297394 6.255092166447865e-05 0.02455028978286808 1.98595732409766e-05 6.566890711398166e-05 5.312183611759594e-08 0.12894059759909707 0.00010430448130765021 0.08470665744387687 0.0001216225415863922']
['59852.266887769096 0.21374918911369878 6.256247529063148e-05 0.02459564081097581 1.9868200914957174e-05 6.579021535427821e-05 5.31449140497202e-08 0.1291787857719318 0.00010434979472141373 0.08457040334176699 0.00012166734554880393']
['59852.26709039607 0.21357139026757277 6.254411341178726e-05 0.0245429052440271 1.985819115341921e-05 6.564915441046913e-05 5.311813920891452e-08 0.12890181325644487 0.00010429722244442863 0.0846695770111279 0.00012161281483498823']
['59852.26729302303 0.21363577979882897 6.254786792917732e-05 0.024573948679844963 1.9861322501506323e-05 6.573219165855264e-05 5.312651516734486e-08 0.12906485651179078 0.00010431366860034833 0.08457092328703819 0.00012162885035775479']
['59852.26749565 0.21355087346204937 6.253964506399891e-05 0.024554585762095238 1.9861658382581965e-05 6.568039831279549e-05 5.3127413606563006e-08 0.1289631605152061 0.00010431543268162797 0.08458771294684328 0.00012162613493935513']
['59852.26769827697 0.21355601544838396 6.254885838809496e-05 0.024523032740053935 1.9855394631550107e-05 6.559599798628522e-05 5.311065886809213e-08 0.1287974408616278 0.00010428253482956989 0.08475857458675615 0.00012160265933002622']
['59852.267900903935 0.21366053493055615 6.255577593488279e-05 0.024552388884111435 1.986125297836513e-05 6.567452194320739e-05 5.3126329201772087e-08 0.12895162229050125 0.00010431330345780006 0.0847089126400549 0.00012163260410389289']
['59852.2681035309 0.21366970478896996 6.254747011863713e-05 0.024570051671706422 1.985959956913096e-05 6.572176765672881e-05 5.3121906542065e-08 0.12904438903207158 0.00010430461958577187 0.08462531575689838 0.00012162088506985298']
['59852.26830615787 0.21357423030148603 6.254149885877082e-05 0.02455975689770298 1.9859921855389896e-05 6.56942304437765e-05 5.312276861687509e-08 0.128990319840877 0.00010430631226570325 0.08458391046060904 0.00012161926598188309']
['59852.26850878484 0.21353992032169705 6.254118423285003e-05 0.0245556262012201 1.9858863651722565e-05 6.568318135531159e-05 5.31199380564641e-08 0.1289686250064081 0.00010430075447333281 0.08457129531528895 0.00012161433759616397']
['59852.26871141181 0.2136481237219946 6.255181036164875e-05 0.024568238717493262 1.9861299482062134e-05 6.571691823446622e-05 5.312645359325528e-08 0.12903486721372515 0.00010431354769990617 0.08461325650826945 0.00012163077412094469']
['59852.268914038774 0.21366573837701627 6.25513375049106e-05 0.024579692598094595 1.9863622069977774e-05 6.574755591035339e-05 5.3132666220945027e-08 0.12909502414965648 0.00010432574616584966 0.08457071422735979 0.00012164099283019079']
['59852.26911666574 0.21350515086065303 6.253686304845818e-05 0.02452726403096265 1.9855322126715685e-05 6.560731615206306e-05 5.311046492686866e-08 0.1288196640281652 0.0001042821540268681 0.08468548683248783 0.00012159616313200452']
['59852.26931929271 0.2137792634476019 6.255939375541184e-05 0.024598980632229733 1.9865045300655476e-05 6.579914895195225e-05 5.313647318224782e-08 0.12919632684994609 0.00010433322111688802 0.08458293659765581 0.0001216515465403959']
['59852.269521919676 0.21368630241863562 6.255032814117697e-05 0.02456054757790535 1.9859794879148753e-05 6.569634541289604e-05 5.3122428971556884e-08 0.12899447257303231 0.00010430564537368044 0.0846918298456033 0.00012162323465271304']
['59852.26972454664 0.21355001595620765 6.254657957334829e-05 0.024523711650534626 1.9855943868003615e-05 6.559781398559478e-05 5.3112128005848465e-08 0.12880100656793397 0.0001042854194748089 0.08474900938827368 0.00012160396100194287']
['59852.26992717361 0.21359649345298243 6.25465346745233e-05 0.02456543231886814 1.9860645070302814e-05 6.570941147457589e-05 5.312470312491388e-08 0.12902012772514782 0.00010431011066335512 0.08457636572783461 0.00012162511330474779']
['59852.27012980058 0.21364339174355002 6.254852253029907e-05 0.02458616403596465 1.9867390157323835e-05 6.576486618473879e-05 5.31427453760228e-08 0.129129012793932 0.00010434553654056638 0.08451437894961802 0.00012165651921151616']
['59852.27033242755 0.21369265807561771 6.255497702428623e-05 0.02457186868441972 1.9862343723911595e-05 6.572662793496379e-05 5.3129246807576714e-08 0.12905393216606995 0.00010431903216340123 0.08463872590954777 0.00012163710627114458']
['59852.270535054515 0.2138924257396152 6.258140730807392e-05 0.024551937591448567 1.9858978998022893e-05 6.567331479265148e-05 5.3120246593167704e-08 0.12894925205592736 0.00010430136028373369 0.08494317368368784 0.00012163554701523839']
['59852.27073768148 0.21392516994055277 6.257580313066517e-05 0.024760912928706247 1.991583636314439e-05 6.62322972785146e-05 5.327233282359236e-08 0.13004681160034795 0.0001045999808988676 0.08387835834020482 0.00012188883107771291']
['59852.27094030845 0.21362150459001297 6.254360470692971e-05 0.024548043526981853 1.9857437860657078e-05 6.566289866477592e-05 5.311612424644916e-08 0.12892880003666943 0.00010429326607487962 0.08469270455334355 0.00012160916017431547']
['59852.27114293542 0.21365446166180238 6.255701955858426e-05 0.02456020801157558 1.9861929346681315e-05 6.569543711609115e-05 5.3128138401114466e-08 0.12899268913642636 0.00010431685581240187 0.08466177252537602 0.00012163629023707743']
['59852.27134556238 0.21383925519705493 6.256436004715064e-05 0.024574246734342678 1.985993825850501e-05 6.573298891647906e-05 5.3122812493124706e-08 0.1290664219240687 0.00010430639841651792 0.08477283327298624 0.00012163109758090187']
['59852.271548189354 0.213804636875621 6.256164792872715e-05 0.024591137134960667 1.986565861975366e-05 6.577816859293545e-05 5.313811373293973e-08 0.12915513201134804 0.00010433644233063897 0.08464950486427297 0.00012165546839239395']
['59852.27175081632 0.2135869281460407 6.254677777418098e-05 0.02454101315449296 1.9856950670654856e-05 6.564409331127365e-05 5.311482107506969e-08 0.12889187581141262 0.00010429070730385954 0.08469505233462807 0.00012160859772183907']
['59852.27195344328 0.21362072891273165 6.255352654947676e-05 0.024550155129632444 1.98597185789666e-05 6.566854693367822e-05 5.312222487826027e-08 0.12893989038672501 0.00010430524463742963 0.08468083852600664 0.00012162453594012244']
['59852.272156070256 0.21370742265528944 6.256018097150476e-05 0.0245908017038988 1.9865666963810512e-05 6.5777271357447e-05 5.313813605223206e-08 0.12915337029358614 0.00010433648615446698 0.0845540523617033 0.00012165475159749703']
['59852.27235869722 0.21388841376865525 6.25691019750672e-05 0.024587385549904858 1.9863763072253188e-05 6.576813357938819e-05 5.31330433841235e-08 0.12913542830832384 0.00010432648672401884 0.08475298546033141 0.00012165076388639422']
['59852.27256132419 0.21353592520391468 6.254156083220118e-05 0.024535865562178797 1.9856428099855035e-05 6.56303241556128e-05 5.311342326455025e-08 0.1288648401374937 0.00010428796270932267 0.08467108506642099 0.00012160356079239208']
['59852.27276395116 0.21356804895498738 6.254549066969287e-05 0.02453658195234429 1.9857232136692823e-05 6.563224040831902e-05 5.3115573960973136e-08 0.12886860269088388 0.00010429218559187407 0.0846994462641035 0.00012160920351125792']
['59852.27296657812 0.21355610584677245 6.25463831371467e-05 0.024566610452473395 1.9861384767018385e-05 6.57125628323389e-05 5.312668171968148e-08 0.129026315401646 0.00010431399562509657 0.08452979044512646 0.00012162836727840843']
['59852.273169205095 0.2136061615238028 6.255051492724498e-05 0.02455480622424895 1.9860569826896365e-05 6.568098802105646e-05 5.3124501858358066e-08 0.12896431840466885 0.00010430971547739689 0.08464184311913395 0.00012162682130450909']
['59852.27337183206 0.2135865951441855 6.254023252930626e-05 0.02455130916191909 1.9858901212120018e-05 6.567163382347499e-05 5.312003852575686e-08 0.1289459514806675 0.00010430095174432784 0.08464064366351798 0.00012161401736474418']
['59852.273574459025 0.21432948530147514 6.274712695621753e-05 0.02536564769434526 2.0511461234842173e-05 6.78498859711359e-05 5.4865553706939895e-08 0.13322293957114106 0.00010772826278803663 0.08110654573033407 0.00012466988627807423']
['59852.273777086 0.21356641384003805 6.254457216503984e-05 0.024546026612471482 1.9859449304778e-05 6.565750367462265e-05 5.3121504604005435e-08 0.1289182069982746 0.00010430383038223741 0.08464820684176344 0.00012161871788386206']
['59852.27397971296 0.21362380782700946 6.254629176218679e-05 0.02455205024376802 1.9858686633454967e-05 6.56736161232984e-05 5.311946455508081e-08 0.12894984371726903 0.0001042998247555408 0.08467396410974043 0.00012161616692379808']
['59852.274182339934 0.2136758062288357 6.255131498309155e-05 0.024577174886599336 1.986155633293611e-05 6.57408213518702e-05 5.312714063672135e-08 0.12908180087499652 0.00010431489670659723 0.08459400535383918 0.00012163167630605928']
['59852.2743849669 0.21362316032232886 6.255060055637503e-05 0.02454849250300839 1.9858340570899514e-05 6.566409961862387e-05 5.3118538881697287e-08 0.1289311581040357 0.00010429800720010249 0.08469200221829318 0.00012161682423034987']
['59852.27458759386 0.2137158747812774 6.255644159459981e-05 0.024579137217534644 1.9864926066698662e-05 6.574607033789266e-05 5.3136154246556874e-08 0.12909210723495088 0.00010433259488812324 0.08462376754632653 0.00012164949133090452']
['59852.274790220836 0.21361975190889393 6.25433428601441e-05 0.024596303851482253 1.98677146249289e-05 6.579198890342225e-05 5.3143613285656735e-08 0.12918226812753283 0.00010434724067714759 0.0844374837813611 0.00012165531789879183']
['59852.2749928478 0.21370185275001832 6.255276277786917e-05 0.02459780226705302 1.986574421253366e-05 6.579599697476501e-05 5.3138342682755366e-08 0.12919013795721127 0.00010433689187255075 0.08451171479280706 0.00012165128497787732']
['59852.275195474765 0.21370299462950815 6.255565028031072e-05 0.024552940306118497 1.9860107302784957e-05 6.56759969270419e-05 5.312326466510378e-08 0.12895451841448793 0.00010430728625412268 0.08474847621502021 0.00012162737910393378']
['59852.27539810174 0.2136660019716708 6.255157184233137e-05 0.02456345711293288 1.985988233108622e-05 6.570412804956377e-05 5.312266289438261e-08 0.12900975374439538 0.0001043061046800747 0.08465624822727541 0.00012162426819297636']
['59852.2756007287 0.2135149778161407 6.253575108282569e-05 0.024565602836904583 1.9860646210494897e-05 6.570986758866641e-05 5.31247061747829e-08 0.12902102330307028 0.00010431011665175893 0.08449395451307043 0.00012161957325774782']
['59852.275803355675 0.2134964184759055 6.253991448567045e-05 0.024547154075033453 1.9857651224063404e-05 6.566051949378044e-05 5.311669496646247e-08 0.12892412854534377 0.00010429438668100528 0.08457228993056173 0.00012160822339398772']
['59852.27600598264 0.21365863174930105 6.255038412249292e-05 0.02455643509396198 1.9858937202491136e-05 6.568534504066118e-05 5.3120134795428575e-08 0.12897287339265745 0.00010430114076938622 0.0846857583566436 0.00012161940026026578']
['59852.276208609605 0.21376910611972114 6.255583611031508e-05 0.024603444449986082 1.986596775353669e-05 6.581108909751501e-05 5.313894062654723e-08 0.1292197712709353 0.00010433806593244062 0.08454933484878582 0.00012165387225231645']
['59852.27641123658 0.21382844210824253 6.256659030008178e-05 0.024566572761038352 1.986252071476313e-05 6.571246201253723e-05 5.3129720235625524e-08 0.12902611744242834 0.00010431996173720133 0.0848023246658142 0.00012164387628906535']
['59852.27661386354 0.21386196548808079 6.256489689182316e-05 0.024621724820803784 1.986760711258852e-05 6.585998676771988e-05 5.314332570380103e-08 0.1293157816218686 0.00010434667601149433 0.08454618386621218 0.00012166591600662952']
['59852.27681649051 0.21352474249767378 6.254093069351329e-05 0.024523922176594392 1.9853549540025584e-05 6.55983771160664e-05 5.310572348260331e-08 0.1288021122720294 0.00010427284422282345 0.08472263022564439 0.00012159027121578452']
['59852.27701911748 0.21353490838832928 6.254192137733708e-05 0.02456612400108208 1.986272377279e-05 6.57112616366498e-05 5.3130263390057634e-08 0.1290237605098849 0.00010432102821843488 0.08451114787844438 0.00012163210455352854']
['59852.27722174444 0.21343741658281395 6.252931213370525e-05 0.024562679630375582 1.9859162423319315e-05 6.570204838246862e-05 5.3120737232539365e-08 0.12900567032760285 0.00010430232365188717 0.0844317462552111 0.0001216095785499537']
['59852.27742437141 0.21364973838684923 6.255092037244738e-05 0.024563221370836573 1.9861600557836624e-05 6.570349746939702e-05 5.312725893271336e-08 0.12900851560313328 0.00010431512898023438 0.08464122278371594 0.0001216316725758681']
['59852.27762699838 0.21358246671103753 6.254767703699176e-05 0.024574131073219964 1.9862736961103468e-05 6.573267953766556e-05 5.313029866712115e-08 0.1290658144601889 0.00010432109748478712 0.08451665225084865 0.00012163512355875783']
['59852.277829625345 0.21360772608495202 6.254628022899579e-05 0.02454737263407497 1.985946538761478e-05 6.5661104111458e-05 5.3121547623551194e-08 0.12892527643946938 0.00010430391485091798 0.08468244964548263 0.00012161966873705757']
['59852.27803225232 0.21359511005022283 6.254693046468969e-05 0.024530879817564195 1.985377042694045e-05 6.561698792199249e-05 5.310631432704642e-08 0.12883865450401363 0.00010427400434317464 0.0847564555462092 0.0001215943522221124']
['59852.27823487928 0.21356799330717072 6.254645202367907e-05 0.0245701298840074 1.98629471754855e-05 6.572197686470042e-05 5.313086096389442e-08 0.12904479981096326 0.00010432220155191964 0.08452319349620746 0.00012163544054834402']
['59852.27843750625 0.21354008886225534 6.254204762115292e-05 0.02455272659623651 1.9858961456820326e-05 6.56754252802502e-05 5.312019967267869e-08 0.12895339598863712 0.00010430126815556895 0.08458669287361822 0.00012161522215375204']
['59852.27864013322 0.2137478050104019 6.255662765901001e-05 0.024613461866611338 1.9869423641168555e-05 6.583788441470696e-05 5.314818468704103e-08 0.12927238375321082 0.00010435621660277603 0.08447542125719107 0.00012166984674813034']
['59852.278842760184 0.21369618767287935 6.25542388297522e-05 0.024585018089388046 1.986298950482971e-05 6.576180092318945e-05 5.313097418951407e-08 0.12912299416695402 0.00010432242386990396 0.08457319350592532 0.00012163963547159119']
['59852.27904538715 0.21356563880288448 6.254656264354461e-05 0.024550250465045775 1.9858150324398666e-05 6.566880194380064e-05 5.311802999647013e-08 0.1289403910979295 0.00010429700800629552 0.08462524770495497 0.00012161389056184381']
['59852.27924801412 0.21370234631996027 6.255413521826037e-05 0.024557013498120776 1.9859221464642334e-05 6.568689219832467e-05 5.3120895160579784e-08 0.12897591122962593 0.0001043026337428694 0.08472643509033434 0.00012162260989883239']
['59852.27945064109 0.2135842237023025 6.254364741090315e-05 0.024540873686933504 1.9856937992956637e-05 6.564372025326544e-05 5.3114787163837114e-08 0.1288911433137264 0.00010429064071931008 0.08469308038857612 0.0001216069306129531']
['59852.27965326806 0.21360072197741425 6.254335397197216e-05 0.024583708066160035 1.986224457142801e-05 6.575829677743645e-05 5.3128981587276175e-08 0.12911611379285734 0.00010431851140455889 0.08448460818455691 0.00012163068259171487']
['59852.27985589502 0.21373988211365522 6.256020840250388e-05 0.02454551121026923 1.9859700915933818e-05 6.565612503919124e-05 5.3122177631890904e-08 0.12891550005393504 0.00010430515186940031 0.08482438205972018 0.00012162789310788616']
['59852.28005852199 0.21351212237577594 6.253917233868951e-05 0.024528792070478 1.9855760542576124e-05 6.561140346369512e-05 5.311163763361351e-08 0.12882768944578782 0.00010428445663117713 0.08468443292998812 0.00012159932553952828']
['59852.28026114896 0.21348907472130946 6.253612201159199e-05 0.024555012502243043 1.985754501925919e-05 6.568153978849194e-05 5.3116410882099935e-08 0.12896540179749497 0.00010429382888266381 0.08452367292381449 0.00012160579467794732']
['59852.280463775925 0.2138459652906876 6.256144432596273e-05 0.024595360142803245 1.986497875725997e-05 6.578946460256339e-05 5.313629518711631e-08 0.1291773116743868 0.00010433287162426456 0.0846686536163008 0.00012165230132437201']
['59852.28066640289 0.2136557257843986 6.255195423280763e-05 0.024582156469469856 1.986378416935627e-05 6.575414645335364e-05 5.313309981619477e-08 0.12910796465057697 0.00010432659752813167 0.08454776113382162 0.000121642040142954']
['59852.28086902986 0.2135796965182122 6.254593958060663e-05 0.02452489529365652 1.9855902146330118e-05 6.560098008061505e-05 5.3112016405670804e-08 0.12880722318096913 0.00010428520034837248 0.08477247333724308 0.00012160344390567679']
['59852.28107165683 0.21374322806548213 6.25575556356443e-05 0.02456674631654209 1.986016618296966e-05 6.5712926251467e-05 5.312342216211968e-08 0.12902702897343538 0.00010430759549879024 0.08471619909204675 0.00012162862428657976']
['59852.2812742838 0.21349843083479322 6.254412501012077e-05 0.024510119418973284 1.985212369263858e-05 6.556145649247482e-05 5.310190952193547e-08 0.1287296187971286 0.00010426535552856398 0.08476881203766462 0.00012158549229566602']
['59852.281476910764 0.21387822010426893 6.256429395591018e-05 0.024597298138188894 1.986615243088044e-05 6.57946484940813e-05 5.313943461498647e-08 0.12918749022158035 0.0001043390358764729 0.08469072988268858 0.0001216590534478772']
['59852.28167953773 0.21349224003213776 6.254265707035056e-05 0.024536288769880475 1.9857201611937543e-05 6.56314561824645e-05 5.3115492311129615e-08 0.12886706286701932 0.00010429202527278122 0.08462517716511844 0.00012160760868020515']
['59852.2818821647 0.2135959950569324 6.254944440614482e-05 0.02456545251765425 1.9861040135192673e-05 6.570946550376336e-05 5.312575987331831e-08 0.12902023381120933 0.00010431218558399515 0.08457576124572305 0.00012162838918947849']
['59852.28208479167 0.2136415927555949 6.254939260195904e-05 0.024566960543130123 1.9861573718972366e-05 6.571349928038174e-05 5.3127187142160186e-08 0.12902815411307839 0.00010431498801981285 0.08461343864251653 0.00012163076601110307']
['59852.28228741863 0.21373189769222506 6.255222151445155e-05 0.024599973347481215 1.9868411703269502e-05 6.580180433916832e-05 5.314547788168412e-08 0.12920154069055262 0.00010435090180288604 0.08453035700167244 0.00012166302282726901']
['59852.2824900456 0.2135824604844238 6.254767495752583e-05 0.0245635361125727 1.9860739687691604e-05 6.57043393635668e-05 5.3124956214411846e-08 0.12901016865847006 0.0001043106076034223 0.08457229182595374 0.00012162612589895086']
['59852.28269267257 0.21359591730932057 6.254692891324055e-05 0.024566989103900833 1.9860627576706012e-05 6.571357567681598e-05 5.312465633176425e-08 0.12902830411712624 0.00010431001878522066 0.08456761319219433 0.00012162523724725497']
['59852.28289529954 0.213559022712446 6.254151642704483e-05 0.024551472774485716 1.985821957473829e-05 6.567207146631079e-05 5.311821523233336e-08 0.12894681079036616 0.00010429737171606247 0.08461221192207985 0.00012161160727444081']
['59852.283097926505 0.2135144554752259 6.254513677699586e-05 0.024506344514087557 1.9855032775574584e-05 6.555135910134432e-05 5.31096909493158e-08 0.1287097926160061 0.00010428063432549678 0.08480466285921981 0.00012159911525081544']
['59852.28330055347 0.21368989694894241 6.255585676024913e-05 0.0245636177767556 1.9859824617622813e-05 6.570455780488414e-05 5.3122508518198e-08 0.1290105975669937 0.00010430580156314504 0.08467929938194871 0.00012162621203810878']
['59852.28350318044 0.21379334969374197 6.256132219417527e-05 0.024629544340548426 1.986890579265031e-05 6.588090298990416e-05 5.314679950802504e-08 0.12935685052809048 0.00010435349681013819 0.08443649916565149 0.00012166992780135495']
['59852.28370580741 0.21352553495177146 6.254504045121892e-05 0.0245245854952067 1.985487795727704e-05 6.560015140910831e-05 5.310927683003285e-08 0.1288055960882705 0.00010427982120418614 0.08471993886350096 0.00012159836839128082']
['59852.28390843437 0.21353589918557073 6.213328989918288e-05 0.024542308779844424 1.9712696793679956e-05 6.564755894453552e-05 5.2728960275393634e-08 0.12889868056640982 0.00010353307139537793 0.0846372186191609 0.00012074619077327584']
['59852.284111061344 0.21354152297488596 6.213361716165576e-05 0.024578084838847047 1.9717965518354817e-05 6.574325535856265e-05 5.2743053444734713e-08 0.12908658003596138 0.00010356074326867026 0.08445494293892458 0.00012077008705780847']
['59852.28431368831 0.21352360459660422 6.213784259718478e-05 0.02455345582793817 1.97130107496154e-05 6.567737588243472e-05 5.272980006764639e-08 0.12895722598707024 0.0001035347203236103 0.08456637860953398 0.00012074994739179275']
['59852.284516315274 0.21379745562769517 6.216834923386797e-05 0.024729743420898405 1.9783086969687088e-05 6.61489228038699e-05 5.291724505617756e-08 0.1298831062021975 0.00010390276769793639 0.08391434942549766 0.00012108133126851349']
['59852.28471894225 0.21346472066767583 6.213132754870144e-05 0.02454971979205243 1.971292125360211e-05 6.566738246094255e-05 5.272956067717745e-08 0.1289376039498552 0.0001035342502815237 0.08452711671782062 0.00012074619184190122']
['59852.28492156921 0.213706303491566 6.214670275522974e-05 0.024605412775761393 1.972226162979557e-05 6.58163541189731e-05 5.2754544997203106e-08 0.12923010911639388 0.00010358330687917841 0.08447619437517212 0.00012079616768495982']
['59852.28512419618 0.21350442884984933 6.2130210707097e-05 0.024559689487736167 1.9715095937742583e-05 6.56940501306768e-05 5.273537768105341e-08 0.12898996579693364 0.00010354567194192534 0.08451446305291568 0.00012075541089497023']
['59852.28532682315 0.21358750147062172 6.214397923503158e-05 0.024562565140063657 1.97153638143828e-05 6.570174213542527e-05 5.273609421704383e-08 0.12900506901293937 0.00010354707885705254 0.08458243245768235 0.00012076370189337809']
['59852.28552945011 0.21405225828300736 6.222465435626453e-05 0.0251246371785167 1.998574172355057e-05 6.720521345128309e-05 5.3459320784218643e-08 0.13195712803842807 0.0001049671309010009 0.08209513024457929 0.00012202461300632937']
['59852.285732077085 0.21370851471093744 6.214782610544375e-05 0.02459362642089012 1.9720262878521493e-05 6.578482711664035e-05 5.274919859140008e-08 0.12916820599206996 0.00010357280923593223 0.08454030871886747 0.00012078774400846835']
['59852.28593470405 0.2136194056541333 6.214455909613109e-05 0.024571563552990686 1.971727149184619e-05 6.572581174714491e-05 5.2741197011970265e-08 0.12905232958503512 0.00010355709817146108 0.08456707606909816 0.00012077259129018537']
['59852.286137331015 0.21356594460470352 6.213753283880803e-05 0.024545635545225927 1.971297587916589e-05 6.565645761940901e-05 5.2729706793622744e-08 0.1289161530736656 0.00010353453718049314 0.08464979153103791 0.00012074963095791582']
['59852.28633995799 0.21349808516616353 6.213632483167412e-05 0.02453916639759679 1.971127749934987e-05 6.563915347112719e-05 5.2725163843320765e-08 0.12888217645796635 0.00010352561711843419 0.08461590870819719 0.00012074136102984742']
['59852.28654258495 0.21375159790080817 6.215214561696579e-05 0.024584805431846043 1.97181447452733e-05 6.576123209127355e-05 5.274353285397861e-08 0.12912187726809896 0.00010356168458651944 0.08462972063270921 0.00012078042771571169']
['59852.286745211924 0.21364765843866879 6.214560746056324e-05 0.024572591058301136 1.971584036025121e-05 6.572856019335015e-05 5.2737368916717225e-08 0.1290577261465396 0.00010354958172400846 0.08458993229212919 0.0001207666858113591']
['59852.28694783889 0.21386503307251625 6.215997641720608e-05 0.024567759973154628 1.97162959158103e-05 6.571563765416419e-05 5.2738587469979113e-08 0.12903235280018188 0.00010355197434774319 0.08483268027233437 0.00012077613199429463']
['59852.287150465854 0.21361301298994884 6.214603602263617e-05 0.02457579884732923 1.971716354620842e-05 6.573714062158909e-05 5.274090827109907e-08 0.12907457377798967 0.00010355653123008624 0.08453843921195917 0.00012077286513838536']
['59852.28735309283 0.21339121206981232 6.212717997378153e-05 0.02450947892651107 1.9706812532146184e-05 6.555974325648534e-05 5.271322062313237e-08 0.1287262548661296 0.00010350216666043164 0.08466495720368272 0.00012071654814025461']
['59852.28755571979 0.2135249413386697 6.213477735714321e-05 0.024557012178636158 1.971247359493182e-05 6.568688866887091e-05 5.2728363247090146e-08 0.12897590429955966 0.00010353189913304529 0.08454903703911004 0.00012074595105144032']
['59852.287758346756 0.21344918805441482 6.213144199740878e-05 0.024547240157111308 1.9712959192278146e-05 6.566074975240569e-05 5.2729662158317374e-08 0.12892458065709722 0.00010353444953927599 0.0845246073973176 0.00012074642158705267']
['59852.28796097373 0.2135140768039241 6.213532968728309e-05 0.024518982096904084 1.9709090593753108e-05 6.558516303031884e-05 5.271931414860144e-08 0.1287761664753366 0.0001035141312697117 0.08473791032858749 0.00012073100085674131']
['59852.28816360069 0.2135980059000051 6.214261561857507e-05 0.0245637419057477 1.97144677522936e-05 6.570488983417277e-05 5.273369736476124e-08 0.12901124950497742 0.00010354237264860084 0.08458675639502769 0.00012075896492442991']
['59852.288366227665 0.2135625407636864 6.213977594836582e-05 0.024561111488581703 1.971584274312196e-05 6.569785380233476e-05 5.2737375290593845e-08 0.12899743428876947 0.00010354959423908594 0.08456510647491691 0.00012076369579469006']
['59852.28856885463 0.21359871853959123 6.213976203323737e-05 0.024582473708449692 1.9716442354665124e-05 6.575499502733319e-05 5.273897917531702e-08 0.12910963082168958 0.00010355274345937566 0.08448908771790165 0.00012076638896444093']
['59852.288771481595 0.2135411785394829 6.214172046604004e-05 0.024530760634007606 1.9708228542455636e-05 6.561666912111575e-05 5.271700827086713e-08 0.12883802853995593 0.00010350960368936784 0.08470314999952697 0.00012073040825910203']
['59852.28897410857 0.21391547777623426 6.216815659154032e-05 0.024570670012110503 1.9713684224515983e-05 6.572342163877624e-05 5.273160152746952e-08 0.12904763661822743 0.00010353825748170159 0.08486784115800683 0.00012076858224032199']
['59852.28917673553 0.21384048124810368 6.216467841447673e-05 0.024590456979661078 1.9718004934558245e-05 6.577634926389344e-05 5.2743158878072756e-08 0.12915155976712753 0.00010356095028654541 0.08468892148097615 0.00012078624783735787']
['59852.2893793625 0.2137404357129197 6.215604403982923e-05 0.02454611952455913 1.9715527867474947e-05 6.565775220265663e-05 5.273653303822945e-08 0.1289186949819282 0.00010354794048043565 0.0848217407309915 0.00012077064953216504']
['59852.28958198947 0.21366373343396217 6.215049835560271e-05 0.024549520780439135 1.9712877913212346e-05 6.566685013015282e-05 5.272944474713935e-08 0.12893655872079376 0.00010353402265342619 0.0847271747131684 0.00012075586235313772']
['59852.289784616434 0.21369144410946303 6.214936526555946e-05 0.024553134913165024 1.9712799990188216e-05 6.567651747617493e-05 5.272923631294657e-08 0.12895554051032052 0.00010353361339384569 0.08473590359914251 0.00012075492828575664']
['59852.289987243406 0.21365000958662408 6.214503704000016e-05 0.024600048826391583 1.9719333873963102e-05 6.580200623566722e-05 5.274671362219634e-08 0.1292019371134012 0.00010356793001031043 0.08444807247322289 0.00012078212514823354']
['59852.29018987037 0.21354307378873888 6.21358489870039e-05 0.024545454830841144 1.9709938685499878e-05 6.565597423138168e-05 5.272158268631058e-08 0.1289152039434934 0.0001035185855330876 0.08462786984524548 0.00012073508719550803']
['59852.290392497336 0.21354554523864414 6.21397287035725e-05 0.024520403873748223 1.9708699070464427e-05 6.558896610280149e-05 5.271826687353036e-08 0.12878363379069446 0.00010351207494991821 0.08476191144794967 0.0001207315018700218']
['59852.29059512431 0.21371929212434584 6.214933254166996e-05 0.024555085026961403 1.9710789606869177e-05 6.568173378290241e-05 5.272385879290061e-08 0.12896578270462922 0.00010352305465792636 0.08475350941971663 0.0001207458586498232']
['59852.29079775127 0.21374771898515849 6.215699955165102e-05 0.024543712953130764 1.971124467132431e-05 6.565131492973683e-05 5.272507603252178e-08 0.12890605542610695 0.00010352544470233356 0.08484166355905154 0.00012075185420555607']
['59852.29100037824 0.21374859949973374 6.215617106891796e-05 0.024579457092444558 1.9715977345867523e-05 6.574692596265038e-05 5.273773533584275e-08 0.12909378725023404 0.00010355030118627902 0.0846548122494997 0.00012077273896752401']
['59852.29120300521 0.21379840640228528 6.21580829832844e-05 0.024614181163556924 1.972161909198575e-05 6.583980844268075e-05 5.275282629016856e-08 0.12927616157330318 0.00010357993220580753 0.0845222448289821 0.00012079912928459607']
['59852.291405632175 0.21378385914261064 6.216023984347737e-05 0.024601946399569016 1.9720374635082133e-05 6.580708200291204e-05 5.274949752600594e-08 0.12921190335908098 0.00010357339619265826 0.08457195578352966 0.00012079463488201779']
['59852.29160825914 0.21372862616422048 6.216065878615866e-05 0.024733058161690576 1.9782219765619837e-05 6.615778931449415e-05 5.291492539543853e-08 0.12990051555509757 0.00010389821305472604 0.0838281106091229 0.00012107347429017839']
['59852.29181088611 0.2133415637464557 6.212663052324927e-05 0.024476028146420487 1.970249810751144e-05 6.547026666822154e-05 5.270168008519595e-08 0.12855056799590595 0.00010347950686718194 0.08479099575054974 0.00012069683741361031']
['59852.29201351308 0.21381120065090198 6.21570170217963e-05 0.024630391350191655 1.9724347959177706e-05 6.588316863312377e-05 5.276012566332218e-08 0.12936129910814947 0.00010359426449147955 0.0844499015427525 0.0001208108703742279']
['59852.29221614005 0.21353738497772823 6.213598825314985e-05 0.024519584216816277 1.970896649239246e-05 6.558677362461059e-05 5.2718982193223433e-08 0.1287793288698334 0.00010351347947685116 0.08475805610789483 0.00012073078095332632']
['59852.292418767014 0.21358493182002308 6.21419526525174e-05 0.024525905575308822 1.9708812073531516e-05 6.560368245572227e-05 5.271856914238266e-08 0.12881252928208417 0.00010351266845342183 0.08477240253793891 0.00012073315538747319']
['59852.29262139398 0.21360960248383465 6.214243768015521e-05 0.024589333899172075 1.9718173328920122e-05 6.577334516622428e-05 5.274360931160354e-08 0.12914566123514745 0.00010356183471071493 0.0844639412486872 0.00012077556114331001']
['59852.29282402095 0.21338177297300887 6.212475493936104e-05 0.02451590877184047 1.9708132790652353e-05 6.557694227610702e-05 5.271675214695449e-08 0.12876002506218734 0.00010350910079124136 0.08462174791082153 0.00012072124553237109']
['59852.293026647916 0.21363782049143942 6.214819818757303e-05 0.024524441317963427 1.970991598201387e-05 6.559976575329406e-05 5.272152195736902e-08 0.12880483885484995 0.00010351846629208968 0.08483298163658948 0.0001207413408962662']
['59852.29322927488 0.21371410525889206 6.214932984241574e-05 0.02457833976342747 1.9714768343386746e-05 6.574393724943812e-05 5.273450140775828e-08 0.12908791892556445 0.00010354395138333376 0.08462618633332761 0.00012076377382284629']
['59852.29343190185 0.21324897400659762 6.211486571145349e-05 0.02449269343159659 1.9702838136675445e-05 6.551484418946209e-05 5.270258962002363e-08 0.12863809575418378 0.00010348129273463995 0.08461087825241384 0.00012069231329452654']
['59852.29363452882 0.2136766838652307 6.214263121590854e-05 0.024582693724418597 1.9714890924843074e-05 6.575558354210646e-05 5.273482929758527e-08 0.12911078636774473 0.00010354459519350354 0.08456589749748597 0.00012076087863303633']
['59852.29383715579 0.21371155198751168 6.214584590942964e-05 0.024567268554644608 1.9713745426468885e-05 6.571432317206341e-05 5.2731765234920465e-08 0.12902977182061245 0.00010353857892052987 0.08468178016689923 0.00012075737446914521']
['59852.294039782755 0.21353092797350348 6.214131040788786e-05 0.024727017494920272 1.9782942393884146e-05 6.61416312980897e-05 5.2916858334266807e-08 0.1298687893640771 0.00010390200837124026 0.0836621386094264 0.0001210667989284707']
['59852.29424240972 0.2132810270858389 6.21131764331753e-05 0.02449859176533216 1.9703025917125357e-05 6.553062148307589e-05 5.270309190887774e-08 0.12866907439775294 0.00010348227897649873 0.08461195268808597 0.00012069228951672379']
['59852.29444503669 0.21304399604947316 6.209840336743762e-05 0.024465828602599986 1.9700904919993025e-05 6.544298418391372e-05 5.2697418510929936e-08 0.12849699896323521 0.00010347113928567766 0.08454699708623795 0.00012067513565710666']
['59852.29464766366 0.21305304850062418 6.209249377900018e-05 0.024514555812614865 1.970772206392642e-05 6.557332328201363e-05 5.271565350512773e-08 0.1287529191839016 0.00010350694361305895 0.08430012931672257 0.00012070279681851676']
['59852.29485029062 0.21320384069760423 6.210407726292559e-05 0.02449725147572087 1.9705562213347416e-05 6.552703637859167e-05 5.270987617914473e-08 0.12866203506155918 0.00010349559986001795 0.08454180563604505 0.00012069902900630303']
['59852.295052917594 0.21298874746649046 6.208619693693092e-05 0.02446930768048522 1.969743948282203e-05 6.545229027538997e-05 5.268814890663181e-08 0.12851527143111988 0.00010345293846019974 0.08447347603537059 0.00012065324830331442']
['59852.29525554456 0.21281187636126062 6.207259841062079e-05 0.02446764890454415 1.9701558426326803e-05 6.544785326042352e-05 5.2699166557373005e-08 0.12850655937260583 0.00010347457156684247 0.08430531698865479 0.00012066480196970368']
['59852.29545817153 0.21295741995623657 6.208276884102912e-05 0.024498209805668678 1.970297805349276e-05 6.552959978948758e-05 5.270296387973955e-08 0.1286670683070834 0.00010348202759187376 0.08429035164915316 0.00012067642777897421']
['59852.295660798496 0.21278491729526772 6.207223031461285e-05 0.024483915675331293 1.9703654499305563e-05 6.549136480628768e-05 5.270477328637554e-08 0.12859199409312655 0.00010348558035349561 0.08419292320214117 0.00012067405320668623']
['59852.29586342546 0.21269697870242837 6.206159903688238e-05 0.024466317912435732 1.9699074944358715e-05 6.544429302557863e-05 5.269252355852761e-08 0.12849956886783473 0.0001034615280691109 0.08419740983459365 0.0001206479583971904']
['59852.29606605243 0.2126741938157245 6.206027439355935e-05 0.02446129139731574 1.9695866346184936e-05 6.543084773603454e-05 5.268394096592673e-08 0.12847316910354906 0.00010344467618794611 0.08420102471217544 0.00012063282591994976']
['59852.2962686794 0.21235292274342238 6.203012858491367e-05 0.024421178972140262 1.9690360593303917e-05 6.532355209324327e-05 5.266921377623838e-08 0.12826249460157702 0.00010341575941861302 0.08409042814184536 0.0001205925211130001']
['59852.29647130636 0.21233156590616875 6.20332329861567e-05 0.024406538359208793 1.9688524350699076e-05 6.528439031310986e-05 5.266430206048583e-08 0.1281856006260966 0.00010340611528728507 0.08414596528007215 0.00012058584773314856']
['59852.296673933335 0.212430725210019 6.203877818908231e-05 0.024417204549829992 1.9691070754992155e-05 6.53129210183422e-05 5.267111336855901e-08 0.1282416205348214 0.00010341948925941259 0.08418910467519758 0.00012060016897945007']
['59852.2968765603 0.21229645497980104 6.202399764047803e-05 0.02442136562023605 1.96899041186601e-05 6.532405135319391e-05 5.266799276454158e-08 0.12826347489619774 0.00010341336196775264 0.0840329800836033 0.00012058731159114318']
['59852.297079187265 0.21218425172038838 6.201360512399387e-05 0.024394554936556793 1.9687072886660415e-05 6.525233617949263e-05 5.266041957852831e-08 0.12812266248191595 0.00010339849205178791 0.08406158923847243 0.00012056921406005053']
['59852.29728181424 0.21225555696509663 6.202072213633342e-05 0.024375462372561784 1.9685856669029265e-05 6.520126599569256e-05 5.265716635083296e-08 0.12802238641051358 0.00010339210435414531 0.08423317055458304 0.0001205673969906075']
['59852.2974844412 0.21217500657445487 6.200937796372078e-05 0.02442069711712608 1.9689317766609593e-05 6.532226319227923e-05 5.266642434727721e-08 0.12825996385045213 0.00010341028238765543 0.08391504272400274 0.00012057715147963241']
['59852.297687068174 0.21202705688004694 6.199719501761894e-05 0.024394627382684 1.9687929338059476e-05 6.525252996368175e-05 5.266271047724559e-08 0.12812304297628152 0.00010340299022090062 0.08390401390376542 0.00012056463236238207']
['59852.29788969514 0.2125535778227029 6.226408833878525e-05 0.024354332540221638 1.967931361685454e-05 6.51447463778163e-05 5.2639664517278077e-08 0.12791141040032372 0.00010335773958432008 0.08464216742237918 0.00012066332926220865']
['59852.298092322104 0.21149692866601602 6.195884436804615e-05 0.02431215183371188 1.967275819683202e-05 6.503191834514175e-05 5.262212960130114e-08 0.12768987307621787 0.00010332330985731105 0.08380705558979815 0.00012047657347091872']
['59852.298294949076 0.21155974235308977 6.195772605983911e-05 0.02433692909285022 1.967678703403578e-05 6.509819436645494e-05 5.263290622913125e-08 0.12782000573975957 0.00010334446971657449 0.0837397366133302 0.00012049414607982435']
['59852.29849757604 0.2115040580662826 6.195395336325512e-05 0.02431668720085672 1.967174955254041e-05 6.504404987623145e-05 5.2619431605925824e-08 0.1277136932818105 0.00010331801235577946 0.0837903647844721 0.0001204695148761104']
['59852.298700203006 0.21109671575692696 6.19256437960518e-05 0.02427785069009557 1.96709223367985e-05 6.494016714244862e-05 5.261721890887829e-08 0.12750972001100616 0.00010331366773528624 0.0835869957459208 0.00012045123204215313']
['59852.29890282998 0.2112387320268062 6.193466045575905e-05 0.02426891129303202 1.9667722583960528e-05 6.491625539066836e-05 5.2608659976427274e-08 0.12746276939617657 0.00010329686231071706 0.08377596263062964 0.00012044145436272929']
['59852.29910545694 0.2111252139510113 6.192439807308739e-05 0.024269050871913445 1.966731427516893e-05 6.491662874644869e-05 5.260756780226777e-08 0.127463502478537 0.0001032947178317696 0.08366171147247431 0.00012043433816258172']
['59852.299308083915 0.21117448910702236 6.192149185789208e-05 0.024277552021249104 1.9664979964472678e-05 6.493936824121731e-05 5.2601323817628764e-08 0.12750815137210664 0.00010328245779660021 0.08366633773491572 0.0001204223286704484']
['59852.29951071088 0.21103708142792044 6.191285148799979e-05 0.024237475759135374 1.966011721847788e-05 6.483216933002325e-05 5.258831658969477e-08 0.12729766680218157 0.00010325691816427459 0.08373941462573886 0.00012039598136216514']
['59852.299713337845 0.210784973064759 6.189659987066493e-05 0.02422506518411619 1.9660756823070327e-05 6.47989726180751e-05 5.2590027450745395e-08 0.1272324852106943 0.00010326027743209205 0.08355248785406469 0.00012039050614937133']
['59852.29991596482 0.21043806501990936 6.186411658476429e-05 0.02420746061755147 1.965731001864881e-05 6.475188263841516e-05 5.258080768668564e-08 0.12714002425184595 0.00010324217446769333 0.08329804076806341 0.00012035827977181685']
['59852.30011859178 0.2104919893039141 6.186625076833089e-05 0.02419141147718131 1.9654580576146974e-05 6.47089532262759e-05 5.257350677465115e-08 0.1270557325482212 0.0001032278391604358 0.08343625675569291 0.00012034708040439869']
['59852.30032121875 0.2103912028347209 6.185489655131493e-05 0.024216057389974077 1.9656851828591597e-05 6.477487791279658e-05 5.257958208647588e-08 0.12718517536751092 0.00010323976800730882 0.08320602746720998 0.00012035147662399834']
['59852.30052384572 0.21051335490513823 6.186643418269741e-05 0.02422195678103684 1.965755372388429e-05 6.479065803462634e-05 5.258145956723831e-08 0.12721615956426913 0.00010324345443216539 0.0832971953408691 0.00012036056896495896']
['59852.300726472684 0.20997018449320531 6.18237832456014e-05 0.024111201775890496 1.964298234063614e-05 6.449440246250517e-05 5.254248296771513e-08 0.12663446310866858 0.00010316692405796293 0.08333572138453674 0.000120272999440359']
['59852.300929099656 0.21009549463951738 6.182820144948224e-05 0.024161065163393284 1.964840077181525e-05 6.462778069108291e-05 5.255697658294132e-08 0.12689635064807397 0.00010319538220491202 0.0831991439914434 0.00012029968164087398']
['59852.30113172662 0.2100143643241133 6.182360787784079e-05 0.024141571738739553 1.9646988942586213e-05 6.457563825593282e-05 5.2553200119065646e-08 0.12679396921606909 0.0001031879671354318 0.08322039510804422 0.00012029095997861173']
['59852.301334353586 0.20980874478658823 6.180453350478535e-05 0.024140530574101635 1.9645994783649077e-05 6.457285327276144e-05 5.255054087017381e-08 0.12678850091439936 0.00010318274571244264 0.08302024387218887 0.00012027667843145127']
['59852.30153698056 0.2097879606971948 6.180401134390319e-05 0.024120875636742083 1.9641774827111455e-05 6.45202788116365e-05 5.2539253022399094e-08 0.12668527120137651 0.0001031605820751652 0.08310268949581828 0.00012025739691297251']
['59852.30173960752 0.20946034644383038 6.177402635147352e-05 0.024085366872582895 1.963837972465914e-05 6.442529737736726e-05 5.253017155454045e-08 0.1264987755912967 0.00010314275065472238 0.08296157085253367 0.00012022669148028144']
['59852.30194223449 0.2095284545782317 6.177715044869987e-05 0.024096914748879678 1.9636827978960394e-05 6.445618647980166e-05 5.252602083187865e-08 0.12655942620209915 0.000103134600729834 0.08296902837613254 0.0001202213050389305']
['59852.30214486146 0.2093031110561932 6.17621171979428e-05 0.024032124621635877 1.9629278083786732e-05 6.428288111821504e-05 5.250582582117758e-08 0.12621914192035652 0.00010309494791904797 0.08308396913583668 0.00012017956318444345']
['59852.302347488425 0.20943928588906674 6.177258163854428e-05 0.024080184787541314 1.963442982971594e-05 6.441143595804137e-05 5.251960608723114e-08 0.12647155875809513 0.00010312200540817196 0.08296772713097161 0.00012020815214324554']
['59852.3025501154 0.20913818149169516 6.174294839686905e-05 0.02405516669965383 1.963068464534396e-05 6.434451575041112e-05 5.2509588194700204e-08 0.1263401612376777 0.00010310233532218468 0.08279802025401747 0.00012017605096535102']
['59852.30275274236 0.20911695690565046 6.174856477623745e-05 0.024068568240327718 1.9637041261082867e-05 6.438036316962618e-05 5.2526591334467976e-08 0.12641054748071281 0.00010313572090904868 0.08270640942493765 0.00012020757954203376']
['59852.30295536933 0.2090568607227153 6.174102040318247e-05 0.02404978543187432 1.9631881466672608e-05 6.433012154255884e-05 5.251278953974981e-08 0.12631189827665085 0.0001031086211484906 0.08274496244606444 0.00012018045330073089']
['59852.3031579963 0.20897235625112015 6.172986760138705e-05 0.02401320122314523 1.9623538324678777e-05 6.423226343065396e-05 5.249047269455258e-08 0.12611975432324177 0.00010306480212541375 0.08285260192787838 0.00012013712994422443']
['59852.303360623264 0.2091817636536243 6.174819390415482e-05 0.024070368837950627 1.9639699926795484e-05 6.438517953957921e-05 5.2533702927580444e-08 0.12642000440100118 0.00010314968448947209 0.08276175925262311 0.00012021936974008282']
['59852.30356325023 0.208610081059836 6.170101931142503e-05 0.023992142063320177 1.9622412379801205e-05 6.417593285277968e-05 5.248746093500779e-08 0.12600914949222783 0.00010305888854937607 0.08260093156760817 0.0001201172356204619']
['59852.3037658772 0.20863629864938887 6.170044191395267e-05 0.024003263880300912 1.9622092119531583e-05 6.420568230065612e-05 5.2486604279461804e-08 0.1260675623965384 0.00010305720651014488 0.08256873625285047 0.00012011549586149031']
['59852.303968504166 0.2084336578690267 6.16831912354693e-05 0.023967715132938612 1.9618110258066275e-05 6.41105939163967e-05 5.247595330576582e-08 0.12588085679064398 0.00010303629337219682 0.08255280107838273 0.00012008869152785739']
['59852.30417113113 0.20821230458656276 6.16670800262126e-05 0.02390573408906935 1.9608889960015834e-05 6.394480249606412e-05 5.245129017952199e-08 0.1255553260980533 0.00010298786743705796 0.08265697848850945 0.0001200388670314425']
['59852.3043737581 0.2082540899862806 6.16719190346655e-05 0.023922965502885536 1.9610723408818803e-05 6.399089433951468e-05 5.2456194422209355e-08 0.1256458272210375 0.00010299749689505675 0.08260826276524308 0.00012004961459357361']
['59852.30457638507 0.20819049619191382 6.166355394917174e-05 0.023894964498648086 1.960620059542349e-05 6.39159952094991e-05 5.244409647080521e-08 0.12549876312315172 0.00010297374262302253 0.0826917330687621 0.00012002493722320749']
['59852.30477901204 0.2079604492043244 6.164074287423022e-05 0.023907588551461426 1.9608892619253817e-05 6.394976294743348e-05 5.245129729264585e-08 0.12556506592154112 0.00010298788140364401 0.08239538328278329 0.00012002535106425644']
['59852.304981639005 0.20830524686202492 6.16704966368692e-05 0.023956517583787244 1.9614765072640802e-05 6.408064189458234e-05 5.246700535961417e-08 0.12582204613333636 0.00010301872412101262 0.08248320072868856 0.00012006709655421589']
['59852.30518426597 0.2079418771463683 6.164501751924351e-05 0.023904661998209377 1.960683095075884e-05 6.394193478917658e-05 5.2445782591267824e-08 0.12554969536874674 0.00010297705331280904 0.08239218177762156 0.00012001825566944787']
['59852.30538689294 0.20767342364671926 6.162126691533685e-05 0.02386997398646029 1.960253049275814e-05 6.384914876336319e-05 5.2434279412303615e-08 0.12536751043308977 0.00010295446687372973 0.08230591321362948 0.0001199866775334041']
['59852.30558951991 0.20780721336145425 6.163102750223795e-05 0.023910752391884813 1.9611407779252682e-05 6.395822581873661e-05 5.245802502620024e-08 0.12558168273048748 0.00010300109127758762 0.08222553063096677 0.00012003169729432116']
['59852.30579214687 0.2077551344143664 6.162476765161365e-05 0.023921768204983745 1.9610165356380464e-05 6.398769171969243e-05 5.245470170281328e-08 0.12563953889172136 0.00010299456594737639 0.08211559552264505 0.00012002288366309082']
['59852.305994773844 0.20782165677476133 6.163045444757293e-05 0.023903212334220155 1.9606846156090736e-05 6.393805712212269e-05 5.2445823263599464e-08 0.12554208158729074 0.00010297713317274547 0.08227957518747059 0.00012001084480950761']
['59852.30619740081 0.20761393550347118 6.16112534981386e-05 0.023864134310094737 1.9600562706900483e-05 6.383352837076429e-05 5.242901583505668e-08 0.12533683986394298 0.00010294413186397313 0.0822770956395282 0.00011997266706562367']
['59852.30640002778 0.20742546589777391 6.159335258743424e-05 0.023888197145563294 1.9606185604384125e-05 6.389789339949753e-05 5.244405637167888e-08 0.12546322030232823 0.00010297366388857209 0.08196224559544568 0.00011998881838570047']
['59852.306602654746 0.20775890132790065 6.1621687543879e-05 0.023894241688959865 1.9605274401238646e-05 6.391406178538488e-05 5.244161901899377e-08 0.1254949668537808 0.00010296887815776601 0.08226393447411984 0.00011999925935114897']
['59852.30680528171 0.20744633505175242 6.159895646603253e-05 0.023859330599494154 1.9599696456346705e-05 6.382067905501192e-05 5.242669872484509e-08 0.1253116102914609 0.00010293958222871169 0.08213472476029152 0.00011996244840418134']
['59852.30700790868 0.20736715122547159 6.159259073184825e-05 0.02384760871001685 1.9599023241271995e-05 6.37893244894205e-05 5.242489796002317e-08 0.12525004574588683 0.00010293604643525208 0.08211710547958476 0.00011995614568992008']
['59852.30721053565 0.20779046152546626 6.162338833518712e-05 0.023916036337199895 1.960905782837214e-05 6.397235970135715e-05 5.245173920605467e-08 0.1256094345441171 0.00010298874909859318 0.08218102698134916 0.00012001718389798294']
['59852.30741316261 0.20754258715702606 6.160575156606399e-05 0.023861737004768995 1.960029658721198e-05 6.382711588349214e-05 5.242830399868896e-08 0.12532424897462707 0.00010294273417653351 0.08221833818239899 0.00011996864234357258']
['59852.307615789585 0.2075117270224226 6.160132728267323e-05 0.02387922733187455 1.960358913137798e-05 6.387390028710801e-05 5.2437111136157324e-08 0.12541610993631594 0.00010296002695051462 0.08209561708610666 0.00011998120966483759']
['59852.30781841655 0.20755900855854775 6.161032840810364e-05 0.023870324464769135 1.9601950334217967e-05 6.38500862483262e-05 5.2432727561892765e-08 0.12536935118051015 0.00010295141982257336 0.0821896573780376 0.00011997844560602598']
['59852.30802104352 0.207551704840161 6.162551395078065e-05 0.023803656406285973 1.95932090219374e-05 6.367175765918444e-05 5.240934566174886e-08 0.12501920381452716 0.00010290550956899895 0.08253250102563384 0.00011994685435372282']
['59852.30822367049 0.20757487469189417 6.16090694423519e-05 0.023853144811414935 1.9597164354048467e-05 6.380413285753753e-05 5.241992567279166e-08 0.1252791219086919 0.0001029262833721033 0.08229575278320228 0.00011995623054409074']
['59852.30842629745 0.20732202447049214 6.158906562689735e-05 0.02382496180604139 1.9594806856463474e-05 6.372874689759828e-05 5.241361966617017e-08 0.1251311019224863 0.00010291390155705607 0.08219092254800583 0.00011993533315286907']
['59852.308628924424 0.20722999506378798 6.158280743918467e-05 0.023842703547353968 1.9597266206600064e-05 6.377620380228659e-05 5.242019811543121e-08 0.12522428333694313 0.00010292681831197513 0.08200571172684484 0.00011994320364204901']
['59852.30883155139 0.20732285786679566 6.158848369450633e-05 0.023850273988970945 1.959694842124159e-05 6.3796453772114e-05 5.2419348079958216e-08 0.12526404405972136 0.00010292514927122686 0.0820588138070743 0.00011994468590268101']
['59852.30903417835 0.20732687833321203 6.158977488436408e-05 0.023842144506552414 1.9597458613242938e-05 6.377470843914445e-05 5.2420712778763936e-08 0.12522134719827951 0.00010292782885106586 0.08210553113493252 0.00011994764825664966']
['59852.309236805326 0.20741968150020018 6.159423860723913e-05 0.023854930047815737 1.9598378616586855e-05 6.38089081381724e-05 5.2423173670862176e-08 0.12528849815029275 0.00010293266080140155 0.08213118334990743 0.00011995408658841889']
['59852.30943943229 0.20733817113378317 6.159009657780314e-05 0.023831737487613823 1.9596136934075224e-05 6.37468709852465e-05 5.241717745485262e-08 0.12516668848536672 0.00010292088725879845 0.08217148264841645 0.0001199418568749101']
['59852.30964205926 0.20724828492383435 6.157955896836892e-05 0.023892257588576174 1.9603565042292867e-05 6.390875456885287e-05 5.243704670091412e-08 0.12548454615848834 0.00010295990043221044 0.08176373876534601 0.00011996992614713704']
['59852.30984468623 0.207266748385122 6.157974154391991e-05 0.023843420141261482 1.9597815541807093e-05 6.377812059997685e-05 5.242166751734067e-08 0.12522804696040696 0.0001029297034758776 0.08203870142471503 0.00011994410542518571']
['59852.31004731319 0.20727703800549185 6.158206712061104e-05 0.02382097694038652 1.9594202598099483e-05 6.371808788807677e-05 5.241200335179145e-08 0.12511017300623173 0.00010291072793119478 0.08216686499926013 0.00011992901614778566']
['59852.310249940165 0.20715310769565504 6.157554877510689e-05 0.0238058030681033 1.959228916717322e-05 6.367749970690501e-05 5.240688516708254e-08 0.12503047829886188 0.00010290067839901902 0.08212262939679316 0.00011991704558541253']
['59852.31045256713 0.20734447587274302 6.159116481259077e-05 0.023868034680553186 1.960104665602983e-05 6.384396136636684e-05 5.2430310337512824e-08 0.1253573250029054 0.00010294667361360205 0.08198715086983763 0.00011996453305488763']
['59852.310655194095 0.20714392780906984 6.157388654358563e-05 0.023786987558953743 1.9590593250104495e-05 6.362717060962867e-05 5.240234880431681e-08 0.12493165734744614 0.00010289177127155724 0.0822122704616237 0.00011990854890073855']
['59852.31085782107 0.20720304896575192 6.157885582180958e-05 0.02382753845766484 1.9594983501044394e-05 6.373563911343858e-05 5.241409216798906e-08 0.12514463475664306 0.00010291482931220796 0.08205841420910887 0.00011993088666679702']
['59852.31106044803 0.207221845186078 6.157827733162949e-05 0.02379144563337861 1.9588998683309566e-05 6.363909539250916e-05 5.239808354066129e-08 0.12495507160387928 0.0001028833964459536 0.08226677358219872 0.00011990361755754633']
['59852.311263075 0.20724372440483033 6.157815260159187e-05 0.0238433224892262 1.9595815845304347e-05 6.377785939318495e-05 5.2416318583171e-08 0.12522753408207038 0.0001029192008681951 0.08201619032275995 0.00011993427694021767']
['59852.31146570197 0.2071336544837579 6.157452686049549e-05 0.023796083081033204 1.9590720881753834e-05 6.365149997599754e-05 5.240269020276869e-08 0.12497942794660298 0.00010289244160584997 0.08215422653715491 0.00011990945291221674']
['59852.31166832893 0.20733149103135382 6.158705342046836e-05 0.023826722438696844 1.9593095869082875e-05 6.37334563663392e-05 5.24090429922342e-08 0.12514034894273554 0.00010290491527879662 0.08219114208861827 0.00011992658895154124']
['59852.311870955906 0.20728087765439862 6.157887213335123e-05 0.023845703021814334 1.959716910597125e-05 6.378422701551424e-05 5.241993838358158e-08 0.12524003687927698 0.00010292630832968094 0.08204084077512164 0.00011994074553541915']
['59852.31207358287 0.207108938999153 6.157206080312126e-05 0.02379605178993048 1.9588933451396958e-05 6.365141627627193e-05 5.239790905357997e-08 0.12497926360257607 0.00010288305384137058 0.08212967539657694 0.00011990013110614024']
['59852.312276209836 0.20725881165732726 6.158208489963391e-05 0.02385099962780765 1.9599143307714362e-05 6.379839476384107e-05 5.2425219122507244e-08 0.1252678551880654 0.00010293667703631494 0.08199095646926186 0.000119951292864497']
['59852.31247883681 0.20733794552426646 6.158490697998998e-05 0.023853750657141057 1.9598040160445198e-05 6.380575341790835e-05 5.24222683436695e-08 0.12528230387153919 0.00010293088319561555 0.08205564165272727 0.00011994776981321274']
['59852.31268146377 0.20726054831199633 6.157961095529725e-05 0.02383954904578536 1.959800893849753e-05 6.37677659112339e-05 5.242218482892489e-08 0.1252077155766038 0.00010293071921479797 0.08205283273539254 0.00011994491003573826']
['59852.31288409074 0.20712027953595263 6.156942375213736e-05 0.023836724080410127 1.9595188897858646e-05 6.376020948764513e-05 5.241464157838038e-08 0.1251928785735826 0.0001029159080769887 0.08192740096237003 0.00011992696976277456']
['59852.31308671771 0.20723313925540465 6.157682841639017e-05 0.023830218630241554 1.959521637312018e-05 6.374280823468099e-05 5.2414715071215435e-08 0.12515871129328549 0.0001029160523798329 0.08207442796211917 0.00011993089524918116']
['59852.313289344675 0.20734633560705687 6.158906431582427e-05 0.023844594048834725 1.959727952363065e-05 6.378126065364096e-05 5.242023373679668e-08 0.12523421244135885 0.00010292688825436268 0.08211212316569802 0.00011994647626764532']
['59852.31349197165 0.20734155326996775 6.158492228200787e-05 0.023871468776166124 1.9600546680106425e-05 6.385314713597775e-05 5.2428972965418094e-08 0.12537536121935988 0.0001029440476896346 0.08196619205060787 0.00011995907471803338']
['59852.31369459861 0.20693108696502008 6.15548503155159e-05 0.02379000722654101 1.9588947368124456e-05 6.36352478369061e-05 5.2397946279058505e-08 0.12494751694611875 0.00010288312693342678 0.08198357001890133 0.00011989135667330308']
['59852.31389722558 0.2070892041986073 6.156684121267101e-05 0.02380146614525555 1.9591820463751398e-05 6.366589898910623e-05 5.240563144495772e-08 0.12500770034272873 0.0001028982167213834 0.08208150385587856 0.00011991046218469443']
['59852.31409985255 0.20703802859460715 6.156550307218104e-05 0.023771514670967372 1.9584993738134736e-05 6.358578259942802e-05 5.238737082097413e-08 0.12485039217945049 0.00010286236207003538 0.08218763641515667 0.00011987900858431298']
['59852.31430247951 0.2070199319308537 6.156440569220983e-05 0.02379281085226702 1.9591521055419276e-05 6.364274717964349e-05 5.240483056569621e-08 0.12496224187115032 0.00010289664419863066 0.08205769005970337 0.00011990786227589328']
['59852.31450510648 0.20725968655585114 6.157832250399187e-05 0.023826194769372623 1.959318461954432e-05 6.373204491791453e-05 5.240928038844664e-08 0.12513757757023436 0.00010290538140516974 0.08212210898561678 0.00011992250549646253']
['59852.31470773345 0.2074330252360363 6.16030685734731e-05 0.02401243862537681 1.966712373987532e-05 6.42302235784786e-05 5.260705814455665e-08 0.1261157490828614 0.00010329371712119392 0.08131727615317488 0.00012026857467510479']
['59852.314910360416 0.2071743333137892 6.15707921876305e-05 0.023838655629582046 1.959670398911677e-05 6.376537613636002e-05 5.241869425506888e-08 0.1252030232646116 0.00010292386548905868 0.0819713100491776 0.0001199345010321143']
['59852.31511298739 0.2070361205402259 6.156025702407398e-05 0.023789894449026128 1.9589253773535008e-05 6.363494617137731e-05 5.239876587461614e-08 0.12494692462723807 0.00010288473620554101 0.08208919591298784 0.00011989551363146917']
['59852.31531561435 0.2070095739091113 6.156159455172788e-05 0.023790837128183882 1.9590345815592468e-05 6.36374677183976e-05 5.240168694842302e-08 0.1249518756732347 0.00010289047172054869 0.0820576982358766 0.0001199011221575026']
['59852.31551824132 0.2072597262576936 6.157937442509687e-05 0.023833480246786356 1.959357961437651e-05 6.375153264469066e-05 5.241033694945571e-08 0.1251758416322813 0.00010290745595785984 0.0820838846254123 0.00011992482581311152']
['59852.31572086829 0.2068552864612021 6.154732860726083e-05 0.023785534731244676 1.9590836640265734e-05 6.3623284480026e-05 5.2402999842085903e-08 0.12492402694981448 0.0001028930495812276 0.08193125951138762 0.00011989601040407936']
['59852.315923495255 0.20712461190886505 6.157506869921363e-05 0.023799214142027247 1.9591231846631055e-05 6.365987516649038e-05 5.240405696891922e-08 0.12499587259468092 0.00010289512524491101 0.08212873931418413 0.0001199120339435488']
['59852.31612612222 0.2068385426688084 6.155086754447418e-05 0.023763308685032028 1.9586583051307276e-05 6.356383262926748e-05 5.2391622031857e-08 0.12480729351382369 0.00010287070930308443 0.08203124915498472 0.00011987865584830816']
['59852.31632874919 0.20707225170860716 6.156895433414442e-05 0.023786224208615536 1.958964460016121e-05 6.36251287444247e-05 5.239981128620357e-08 0.12492764815449338 0.00010288678886639291 0.08214460355411378 0.00011990174085907873']
['59852.31653137616 0.20700629742521642 6.155622326939884e-05 0.023797302004044195 1.9590353550671257e-05 6.365476044024036e-05 5.240170763877637e-08 0.1249858298531733 0.00010289051234596249 0.08202046757204312 0.00011989839929709963']
['59852.31673400312 0.20688746564033736 6.155315622539156e-05 0.023764980432182795 1.9588428130324778e-05 6.356830434057242e-05 5.2396557383891125e-08 0.12481607369843906 0.00010288039984414274 0.0820713919418983 0.00011988814667596688']
['59852.31693663009 0.20700187912514234 6.156219490842664e-05 0.023766808615259694 1.9587638669317713e-05 6.357319449811134e-05 5.239444567596419e-08 0.12482567550031352 0.00010287625351532413 0.08217620362482882 0.00011988922962173187']
['59852.31713925706 0.20697882206468993 6.155768910501558e-05 0.02381224767792386 1.959261096176058e-05 6.369473821966536e-05 5.240774592673361e-08 0.12506432603951606 0.0001029023684966417 0.08191449602517387 0.00011990932628519098']
['59852.31734188403 0.20695813080719938 6.155890345726032e-05 0.023821087695519185 1.9596014973090798e-05 6.371838414398999e-05 5.241685122470916e-08 0.12511075470335706 0.00010292024670740965 0.08184737610384232 0.00011992529248317206']
['59852.317544510996 0.20705560934342468 6.156228123413592e-05 0.023804415599324426 1.9591987104090953e-05 6.367378840413958e-05 5.240607718670157e-08 0.1250231911729224 0.00010289909193325081 0.08203241817050227 0.00011990887202971449']
['59852.31774713796 0.2072449671277549 6.157791989901037e-05 0.023853144492500665 1.9598117173167807e-05 6.380413200448236e-05 5.242247434292133e-08 0.125279120233722 0.00010293128767420067 0.08196584689403288 0.00011994452968500894']
['59852.31794976493 0.207092792835262 6.156906467741306e-05 0.023760156857787977 1.958521024229019e-05 6.355540189169332e-05 5.2387949942092457e-08 0.1247907397993066 0.00010286349917169219 0.08230205303595539 0.00011988181341261148']
['59852.3181523919 0.207240916835111 6.157587302880336e-05 0.023837433329582717 1.9594922589580564e-05 6.37621066391023e-05 5.2413929237559485e-08 0.12519660362175797 0.00010291450939905759 0.08204431321335304 0.00011992908064397069']
['59852.31835501886 0.2069433460086556 6.155838063078417e-05 0.02375907885046788 1.958509180561795e-05 6.355251835902639e-05 5.2387633139036486e-08 0.12478507799615485 0.00010286287713034639 0.08215826801250076 0.00011987579287503062']
['59852.318557645835 0.20710201502126796 6.156674619797433e-05 0.02380754822389171 1.958901931228035e-05 6.368216777699225e-05 5.239813872053812e-08 0.1250396440330447 0.0001028835047913884 0.08206237098822325 0.00011989778895194618']
['59852.3187602728 0.207048099164441 6.156593572166622e-05 0.023821045542687318 1.959460855661287e-05 6.371827139051845e-05 5.241308923925524e-08 0.1251105333124334 0.00010291286006624407 0.0819375658520076 0.00011992256338278744']
['59852.31896289977 0.20706951794820433 6.156617000967298e-05 0.023830337646968874 1.959605241149701e-05 6.374312658931062e-05 5.241695136769085e-08 0.12515933638113905 0.00010292044333769439 0.08191018156706528 0.00011992919138594874']
['59852.31916552674 0.20723159359259977 6.157727416061328e-05 0.023831216141488018 1.9594923747829957e-05 6.374547645057452e-05 5.24139323357295e-08 0.12516395032294128 0.0001029145154823002 0.08206764326965849 0.00011992980526127747']
['59852.3193681537 0.2069553261925393 6.155750707890018e-05 0.023763019398960514 1.958604452122502e-05 6.356305882576749e-05 5.239018153228398e-08 0.12480577415420438 0.00010286788088878687 0.08214955203833493 0.00011987963795540296']
['59852.31957078067 0.20713677965979257 6.157773992469015e-05 0.023975439324163267 1.9659534601932692e-05 6.413125514689738e-05 5.258675816443269e-08 0.1259214250218659 0.00010325385820342801 0.08121535463792667 0.00012022136785166935']
['59852.31977340764 0.2071013993688744 6.156642301473251e-05 0.023804595151324784 1.9592322244844254e-05 6.36742686829362e-05 5.2406973645651475e-08 0.12502413419813438 0.00010290085212628286 0.08207726517074002 0.00011991250898527691']
['59852.3199760346 0.20685826337001 6.15490572993852e-05 0.023776746803025592 1.9587345068727082e-05 6.35997778881671e-05 5.239366033167354e-08 0.12487787186463022 0.00010287471149541535 0.0819803915053798 0.00011988116082065582']
['59852.320178661575 0.20703313107364346 6.155988144300048e-05 0.023810610482587608 1.95927652124886e-05 6.369035893007592e-05 5.240815852784017e-08 0.12505572732451475 0.00010290317863701996 0.08197740374912871 0.00011991114700843586']
['59852.32038128854 0.20707726526197376 6.156438964004394e-05 0.02380327468531161 1.9591117378813333e-05 6.36707366040592e-05 5.240375078204501e-08 0.12501719897747693 0.00010289452404838937 0.08206006628449683 0.00011990603467255403']
['59852.32058391551 0.20720039387545391 6.157477651648301e-05 0.023856184439986435 1.95979250801863e-05 6.381226347791262e-05 5.242196051859293e-08 0.1252950863444666 0.00010293027878249108 0.08190530753098732 0.00011994205014629423']
['59852.32078654248 0.20686624372287887 6.154981706975603e-05 0.023788779481792963 1.9588792873257076e-05 6.363196377563708e-05 5.239753302491017e-08 0.12494106870689581 0.00010288231551080397 0.08192517501598306 0.00011988807624691057']
['59852.32098916944 0.20695577557651576 6.155832938468772e-05 0.023786494201412597 1.9589367274444024e-05 6.36258509408659e-05 5.239906947513236e-08 0.1249290661838897 0.00010288533232376063 0.08202670939262606 0.00011989503544352607']
['59852.321191796414 0.20705134882008602 6.156803195711486e-05 0.02380073427630166 1.9590064006830066e-05 6.366394133260695e-05 5.240093314577523e-08 0.125003856493181 0.00010288899163251085 0.08204749232690503 0.0001199031574155877']
['59852.32139442338 0.20701484809983162 6.155940006028862e-05 0.023793099699940867 1.9591774557437942e-05 6.36435198104854e-05 5.2405508651399645e-08 0.12496375892826088 0.00010289797561679592 0.08205108917157074 0.00011990643486409471']
['59852.321597050344 0.20707238478485915 6.156482666610855e-05 0.023795346666359497 1.9589081961011415e-05 6.364953016027508e-05 5.23983062979369e-08 0.12497556022247636 0.00010288383382884147 0.08209682456238279 0.00011989708564326598']
['59852.32179967732 0.20708118703170547 6.15647378710981e-05 0.023811001557511417 1.959254803714966e-05 6.369140500582792e-05 5.240757761139126e-08 0.12505778128945072 0.00010290203801023982 0.08202340574225475 0.00011991266144906409']
['59852.32200230428 0.20691539531736763 6.155224874666885e-05 0.023790783850133324 1.9590087883185735e-05 6.363732520637903e-05 5.240099701199419e-08 0.12495159585154057 0.00010288911703353852 0.08196379946582706 0.0001198951614107633']
['59852.32220493125 0.206947342698405 6.15525557816786e-05 0.023816662957921928 1.9592061417555715e-05 6.370654853288935e-05 5.2406275965781485e-08 0.12508751553530426 0.00010289948223506154 0.08185982716310075 0.0001199042141357025']
['59852.32240755822 0.20687002188309128 6.154931276743752e-05 0.023762505940199737 1.958457148326397e-05 6.35616853887952e-05 5.2386241342824096e-08 0.12480307741701542 0.0001028601443448738 0.08206694446607586 0.0001198687915881032']
['59852.32261018518 0.2068317790531634 6.155065574331007e-05 0.02372686943944169 1.9581098451168036e-05 6.346636227534745e-05 5.237695142306637e-08 0.12461591092143746 0.00010284190363008422 0.08221586813172595 0.0001198538291615708']
['59852.322812812155 0.2077280343014674 6.171144505963054e-05 0.02383890977214024 1.959627777382838e-05 6.376605593542534e-05 5.2417554183304696e-08 0.12520435804695507 0.00010292162696338435 0.08252367625451235 0.0001200048488526103']
['59852.32301543912 0.20694481579156437 6.155625494056434e-05 0.023794494050932896 1.958943421276664e-05 6.364724952229693e-05 5.239924852664373e-08 0.12497108220027782 0.00010288568389058109 0.08197373359128655 0.00011989427205642615']
['59852.323218066085 0.20717791866729576 6.157022890074089e-05 0.023863921272640823 1.959890933708793e-05 6.383295852263229e-05 5.242459328079741e-08 0.12533572096975223 0.00010293544819899124 0.08184219769754353 0.00011994415193254249']
['59852.32342069306 0.20707292775500893 6.156413640697883e-05 0.023798157415231273 1.9590322946799196e-05 6.36570485565227e-05 5.2401625777305504e-08 0.12499032255898779 0.00010289035161134032 0.08208260519602115 0.00011990232419032726']
['59852.32362332002 0.20878796556975365 6.188845161198368e-05 0.025466150073748955 2.0574131782358375e-05 6.811871707154926e-05 5.503318946195635e-08 0.133750788202463 0.0001080574148233108 0.07503717736729065 0.0001245254405381724']
['59852.32382594699 0.20684486047089462 6.154632212559132e-05 0.02377006378833825 1.9584864269419362e-05 6.358190167266717e-05 5.2387024508603917e-08 0.12484277199757485 0.00010286168208728657 0.08200208847331977 0.00011986857556930032']
['59852.32402857396 0.20705099707343655 6.156045655883325e-05 0.023807913154144468 1.959079573635327e-05 6.368314391906974e-05 5.240289042931514e-08 0.1250415606835319 0.00010289283474975458 0.08200943638990466 0.00011990256567134957']
['59852.324231200924 0.20687931040473162 6.154796537017425e-05 0.02381696237434099 1.9592508327902708e-05 6.37073494337824e-05 5.240747139419901e-08 0.1250890881005304 0.00010290182945327054 0.08179022230420122 0.00011990387210610899']
['59852.3244338279 0.2069043622010087 6.155012078648939e-05 0.02379763877097527 1.959071285923739e-05 6.365566124900927e-05 5.2402668743556116e-08 0.12498759858705501 0.0001028923994707846 0.08191676361395368 0.00011989688585483341']
['59852.32463645486 0.20723837265398598 6.15794030755691e-05 0.023849463203010478 1.959972040562153e-05 6.379428502264513e-05 5.2426762786113524e-08 0.12525978573009708 0.00010293970801271813 0.0819785869238889 0.00011995251714277227']
['59852.324839081826 0.20686805487428367 6.154653219525714e-05 0.023800800942506573 1.9591736515259384e-05 6.366411965623804e-05 5.240540689340362e-08 0.12500420663081185 0.00010289777581543795 0.08186384824347182 0.00011989965760178779']
['59852.3250417088 0.20685901221874792 6.154543610015328e-05 0.023785347738605005 1.958889333274573e-05 6.362278429846422e-05 5.239780174128327e-08 0.12492304484561453 0.00010288284313416875 0.08193596737313338 0.00011988627993280976']
['59852.32524433576 0.20663506309814278 6.152679573974174e-05 0.02372767701128135 1.958093309916005e-05 6.346852242745138e-05 5.2376509127445847e-08 0.12462015237017518 0.00010284103518466414 0.0820149107279676 0.00011984083240637654']
['59852.32544696273 0.20695387816269845 6.155602594921874e-05 0.02380772846114941 1.9591876718412718e-05 6.368264988876524e-05 5.2405781919032024e-08 0.12504059065729733 0.00010289851217653739 0.08191328750540111 0.0001199051631032038']
['59852.3256495897 0.20683681324065128 6.154572006509356e-05 0.023828900784917756 1.959659018506653e-05 6.373928316581523e-05 5.241838984368837e-08 0.12515178983675293 0.00010292326777871076 0.08168502340389835 0.0001199211186929936']
['59852.325852216665 0.20694212991430233 6.155150775319052e-05 0.023785457437426796 1.959012123304156e-05 6.362307772888001e-05 5.2401086218622865e-08 0.12492362099488864 0.00010288929219034435 0.08201850891941369 0.00011989493131121569']
['59852.32605484364 0.20695346779884505 6.155200020767384e-05 0.023785320743698588 1.9587831317510684e-05 6.36227120905181e-05 5.239496098541275e-08 0.12492290306564385 0.00010287726532306033 0.0820305647332012 0.00011988486330607727']
['59852.3262574706 0.20671137274643403 6.15329505395018e-05 0.023787552624702564 1.9589053487959282e-05 6.362868208873954e-05 5.239823013613872e-08 0.12493462512974038 0.00010288368428550044 0.08177674761669365 0.0001198805926505842']
['59852.32646009757 0.2070244056179298 6.156233025776976e-05 0.023811712415652067 1.959221162364479e-05 6.36933064610703e-05 5.240667774799256e-08 0.12506151478808858 0.0001029002711325882 0.08196289082984123 0.00011990990912316995']
['59852.32666272454 0.2069213934695054 6.154964015401933e-05 0.02384778613849145 1.960037978122915e-05 6.378979908805542e-05 5.242852653211868e-08 0.12525097761812737 0.000102943171119901 0.08167041585137802 0.00011994021295341478']
['59852.326865351504 0.20676629599821728 6.127179875817615e-05 0.02376502991055035 1.9487616784541455e-05 6.356843668892154e-05 5.212689983765311e-08 0.12481633356381487 0.00010235092849023874 0.0819499624344024 0.00011928933684900927']
['59852.32706797847 0.20674042005233584 6.126879168762133e-05 0.02377766702722041 1.9490772704929618e-05 6.360223937101345e-05 5.213534152386791e-08 0.1248827049748971 0.00010236750370236145 0.08185771507743873 0.00011930201443862599']
['59852.32727060544 0.2067805656229976 6.12747864838168e-05 0.02375247562195468 1.948673410428068e-05 6.353485556140889e-05 5.212453878006198e-08 0.12475039717413174 0.00010234629256449937 0.08203016844886586 0.00011928689391687353']
['59852.327473232406 0.2068112705196717 6.127360423512754e-05 0.023766725422808083 1.9489791145024976e-05 6.357297196886929e-05 5.213271597578783e-08 0.1248252385651685 0.00010236234845076143 0.08198603195450321 0.0001193000626836304']
['59852.32767585938 0.2067992362603362 6.127809318719283e-05 0.02374102938128201 1.9485421516838253e-05 6.350423832136056e-05 5.2121027775361095e-08 0.12469028036387611 0.00010233939872288999 0.08210895589646008 0.00011928267785232248']
['59852.32787848634 0.2067847604024314 6.127126630701441e-05 0.023776408505172916 1.948940792546881e-05 6.359887298437734e-05 5.21316909121466e-08 0.12487609509019389 0.00010236033574300847 0.08190866531223752 0.00011929713495422468']
['59852.32808111331 0.20704210576902493 6.129573966502263e-05 0.023801043538885517 1.949258631023042e-05 6.36647685707403e-05 5.214019268770724e-08 0.12500548077145754 0.00010237702894028582 0.08203662499756739 0.00011932402840887643']
['59852.32828374028 0.20701061985269775 6.128752064554179e-05 0.02379480457210082 1.949155164633602e-05 6.364808012698282e-05 5.213742509319913e-08 0.12497271308876483 0.00010237159478117658 0.08203790676393292 0.00011931514407198749']
['59852.328486367245 0.20681054478481953 6.127368602863904e-05 0.02377099533199619 1.9490978689146755e-05 6.358439343363973e-05 5.213589250548734e-08 0.12484766455880354 0.00010236858555224137 0.08196288022601599 0.00011930545631907535']
['59852.32868899421 0.20710041521775813 6.129471300432335e-05 0.02382441751079895 1.94969395946696e-05 6.372729097695398e-05 5.215183717068507e-08 0.12512824322898608 0.00010239989282914707 0.08197217198877205 0.00011934311833408399']
['59852.32889162118 0.2068070598148427 6.127490565747811e-05 0.02377882959401607 1.949104483652554e-05 6.360534908953789e-05 5.2136069441324425e-08 0.12488881089294154 0.00010236893296494508 0.08191824892190117 0.00011930638080050146']
['59852.32909424815 0.20706723129614835 6.130256620272386e-05 0.023969164003004723 1.95626612177074e-05 6.411446945980712e-05 5.232763416521428e-08 0.12588846640233575 0.00010274506942073215 0.0811787648938126 0.0001196434449241178']
['59852.32929687512 0.2067723870804202 6.127163478102942e-05 0.02377564045024482 1.949072922849679e-05 6.359681853499294e-05 5.21352252299319e-08 0.12487206118826064 0.00010236727535975205 0.08190032589215956 0.00011930327863608424']
['59852.329499502084 0.2069042152657631 6.127980659871757e-05 0.02381037212069306 1.9495822627665557e-05 6.368972134228161e-05 5.214884942581172e-08 0.1250544754238081 0.0001023940264058065 0.08184973984195501 0.00011933042923064187']
['59852.32970212905 0.2068870222444354 6.12811055800851e-05 0.023785068447607395 1.949160330701783e-05 6.362203723051749e-05 5.213756327896171e-08 0.1249215779811313 0.00010237186610828692 0.0819654442633041 0.00011931208183419884']
['59852.32990475602 0.2067691888185912 6.1272452727181e-05 0.02376284751059683 1.9486873255286543e-05 6.356259904622564e-05 5.212491099132953e-08 0.12480487137918504 0.0001023470233996142 0.08196431743940615 0.00011928632219146422']
['59852.330107382986 0.20677081907906442 6.12695621232694e-05 0.023743186326452653 1.9486081236121843e-05 6.35100078757452e-05 5.2122792440655824e-08 0.12470160885741939 0.00010234286363509371 0.08206921022164503 0.000119281268352615']
['59852.33031000995 0.20669598876891637 6.126646785930462e-05 0.023725854386314672 1.948401675635357e-05 6.346364713715139e-05 5.2117270219478786e-08 0.12461057976005607 0.00010233202077916792 0.0820854090088603 0.00011927037587223099']
['59852.33051263692 0.20679678238795607 6.127489308788274e-05 0.02375599649612819 1.9488899501869667e-05 6.354427345264785e-05 5.213033094359218e-08 0.12476888916033714 0.00010235766545099617 0.08202789322761893 0.0001192967065744462']
['59852.33071526389 0.2067252340038462 6.126833651915275e-05 0.023797940638974883 1.949594870947473e-05 6.365646870756893e-05 5.2149186678638005e-08 0.12498918402822945 0.00010239468860018242 0.08173604997561676 0.00011932510764022998']
['59852.33091789085 0.2067961365150784 6.127255421628734e-05 0.023750739188998407 1.948416399081894e-05 6.353021082378975e-05 5.211766405297386e-08 0.12474127725314291 0.0001023327940694272 0.08205485926193548 0.00011927416586270334']
['59852.331120517825 0.20710689140872618 6.129974497804479e-05 0.023770331514605836 1.9489606135332772e-05 6.358261780642989e-05 5.2132221098358684e-08 0.12484417812292982 0.00010236137676120153 0.08226271328579636 0.00011931265727835407']
['59852.33132314479 0.20695783230243545 6.12861132402644e-05 0.023832271592734152 1.949772354552289e-05 6.374829964860838e-05 5.215393413965048e-08 0.12516949365931804 0.0001024040102180824 0.08178833864311741 0.00011934223470692863']
['59852.33152577176 0.20676499242891483 6.126988173913873e-05 0.023765133025706625 1.948840930121652e-05 6.356871250886824e-05 5.212901971910385e-08 0.12481687513501379 0.00010235509086773383 0.08194811729390104 0.00011929192359447514']
['59852.33172839873 0.2070492438830735 6.130294890123816e-05 0.023960943999623854 1.9558793868364165e-05 6.40924819947601e-05 5.2317289496901013e-08 0.12584529411567152 0.00010272475771199666 0.08120394976740197 0.00011962619859786666']
['59852.33193102569 0.2067664986072094 6.127215568282487e-05 0.023763530842792296 1.9490242342055394e-05 6.356442687306064e-05 5.213392287053908e-08 0.12480846030878308 0.00010236471818306406 0.08195803829842631 0.00011930135200708521']
['59852.332133652664 0.2068441048158649 6.127668015757333e-05 0.02376640889042906 1.9490533724532125e-05 6.35721252849572e-05 5.2134702281656766e-08 0.12482357610519466 0.00010236624855321496 0.08202052871067024 0.00011930498888978669']
['59852.33233627963 0.20708977131058867 6.129818996240366e-05 0.02381535702607409 1.949501369152131e-05 6.370305533105869e-05 5.21466856243663e-08 0.1250806566495488 0.00010238977779160353 0.08200911466103988 0.00011933622538391632']
['59852.332538906594 0.20669299349804313 6.127176773602877e-05 0.023757881847088966 1.9486988337938298e-05 6.354931652701542e-05 5.212521882280669e-08 0.12477879121370256 0.00010234762782530619 0.08191420228434057 0.00011928648893720212']
['59852.332741533566 0.2071593424065293 6.133405124518218e-05 0.02383056603839108 1.9497037809498672e-05 6.374373750735776e-05 5.2152099882878877e-08 0.12516053591591955 0.00010240040866333337 0.08199880649060975 0.00011936376978197494']
['59852.33294416053 0.20676640671709243 6.127063915606361e-05 0.02379091881244557 1.9493037685199936e-05 6.363768621342315e-05 5.214140005842298e-08 0.12495230468721415 0.00010237939960714253 0.08181410202987828 0.00011931317063305094']
['59852.3331467875 0.20683168480717345 6.12755649124291e-05 0.023802082615192923 1.9494806795347835e-05 6.36675479678928e-05 5.2146132203379484e-08 0.12501093810500485 0.00010238869115203695 0.0818207467021686 0.00011932367297047356']
['59852.33334941447 0.2069003525885191 6.128045683565384e-05 0.023795122058464693 1.949281058490138e-05 6.364892936268323e-05 5.2140792593967643e-08 0.12497438055916332 0.00010237820685347366 0.08192597202935578 0.00011931718915780355']
['59852.33355204143 0.20669851657480276 6.126558405633425e-05 0.02375871678288185 1.9488889248119724e-05 6.355154987421882e-05 5.213030351611337e-08 0.124783176380682 0.00010235761159726746 0.08191534019412076 0.00011929187919410449']
['59852.333754668405 0.20702033153765087 6.129131273046871e-05 0.02382001001187554 1.9496247296889327e-05 6.371550147711646e-05 5.21499853620494e-08 0.12510509460018668 0.00010239625681139353 0.08191523693746419 0.00011933825214577667']
['59852.33395729537 0.20695836063135947 6.128445347222551e-05 0.02380597495995703 1.9494457965590845e-05 6.36779594957823e-05 5.214519912808331e-08 0.1250313810922113 0.00010238685906297713 0.08192697953914818 0.00011932666569619431']
['59852.334159922335 0.20681919384719094 6.127922775635591e-05 0.023752359387275525 1.948880021375692e-05 6.353454464840475e-05 5.213006536050085e-08 0.12474978669787568 0.00010235714397981576 0.08206940714931527 0.00011929848564889696']
['59852.33436254931 0.2072614391937515 6.135655755848964e-05 0.023772033970123972 1.9489761009780175e-05 6.358717165871738e-05 5.2132635367835374e-08 0.12485311959098726 0.0001023621901774169 0.08240831960276425 0.00011934255374067507']
['59852.33456517627 0.20682388706585733 6.127420055151628e-05 0.02376098640030974 1.9487265817244025e-05 6.355762081258145e-05 5.212596104470773e-08 0.12479509664028227 0.00010234908517460097 0.08202879042557507 0.00011928898896924711']
['59852.334767803244 0.2069710625339944 6.128522969034074e-05 0.02378993425608264 1.9491408762917652e-05 6.363505265019772e-05 5.2137042898202174e-08 0.12494713369791302 0.0001023708443430549 0.08202392883608137 0.00011931332343752645']
['59852.33497043021 0.2068880665960972 6.127580021802635e-05 0.02378785350153381 1.9493118278967073e-05 6.362948689604969e-05 5.214161563651411e-08 0.12493620536519857 0.00010237982289373463 0.08195186123089863 0.00011931618426731534']
['59852.335173057174 0.20674546571415275 6.126755342339752e-05 0.023772024059819263 1.949132943087828e-05 6.358714514991096e-05 5.213683069507257e-08 0.12485306754106756 0.00010237042768318426 0.08189239817308519 0.00011930388747449485']
['59852.335375684146 0.20676897163118751 6.127048358907291e-05 0.02379080597040016 1.949304210546899e-05 6.363738437528339e-05 5.21414118820813e-08 0.12495171202941262 0.00010237942282284135 0.0818172596017749 0.00011931311066591541']
['59852.33557831111 0.20678988150638433 6.127312670740033e-05 0.02375260180979984 1.9486021509118925e-05 6.353519309786797e-05 5.212263267850876e-08 0.12475105992541935 0.0001023425499428515 0.08203882158096498 0.00011928283022005384']
['59852.335780938076 0.20677641419949858 6.127291542136532e-05 0.02375175099910278 1.9484645236729323e-05 6.353291728731214e-05 5.2118951324662606e-08 0.12474659138184235 0.00010233532162147754 0.08202982281765622 0.00011927651996769958']
['59852.33598356505 0.2066158590970888 6.126052784424511e-05 0.02376111355962173 1.9490590915762487e-05 6.355796094759091e-05 5.21348552609343e-08 0.1247957644938116 0.000102366548927324 0.08182009460327719 0.00011929695139040959']
['59852.33618619201 0.2069960498719223 6.129942238742946e-05 0.023953254717646998 1.955935520032976e-05 6.407191414206356e-05 5.231879098861597e-08 0.1258049092313393 0.00010272770588408489 0.081191140640583 0.00011962692314541713']
['59852.33638881898 0.2069732799746476 6.12876838454457e-05 0.023814181609613516 1.9495846614987678e-05 6.36999112413126e-05 5.214891358885184e-08 0.1250744832437685 0.00010239415238964117 0.0818987967308791 0.0001193345827274406']
['59852.33659144595 0.20682668779291846 6.127493776952772e-05 0.02377626940473622 1.9492009733738835e-05 6.359850090837589e-05 5.213865041882142e-08 0.12487536452067342 0.00010237400070240986 0.08195132327224504 0.00011931074561193769']
['59852.336794072915 0.20703252666893623 6.128884912002456e-05 0.023806168367740417 1.9492945118447855e-05 6.367847683703875e-05 5.2141152454117775e-08 0.12503239688939297 0.00010237891343722614 0.08200012977954327 0.00011932210584398927']
['59852.33699669989 0.20669570736068354 6.12635466238174e-05 0.02374246405478709 1.948380715401657e-05 6.350807589077328e-05 5.2116709559848246e-08 0.12469781541379775 0.00010233091992655762 0.0819978919468858 0.00011926793080264367']
['59852.33719932685 0.20669417428554965 6.126764657639185e-05 0.023756277977654706 1.9487459570427088e-05 6.35450263799812e-05 5.212647930986445e-08 0.12477036752969908 0.00010235010278585656 0.08192380675585056 0.00011928649570376801']
['59852.33740195382 0.2066459778499445 6.126236161287347e-05 0.02372689596960788 1.948237342628435e-05 6.34664332401725e-05 5.211287452025782e-08 0.12461605026054562 0.00010232338984393043 0.0820299275893989 0.0001192608613902291']
['59852.33760458079 0.20694270731559414 6.128538810159906e-05 0.023829386228954495 1.9498547599739054e-05 6.374058166695878e-05 5.215613838001818e-08 0.12515433943778623 0.0001024083382339236 0.08178836787780791 0.00011934557609981744']
['59852.337807207754 0.20689620902609476 6.127988281860231e-05 0.023775676503466063 1.9488297948987565e-05 6.359691497278075e-05 5.21287218660339e-08 0.12487225054341419 0.00010235450603459857 0.08202395848268057 0.0001192965588097507']
['59852.33800983472 0.20707777616083148 6.12933627008176e-05 0.023832335475852146 1.949929739809798e-05 6.37484705278354e-05 5.2158143995398774e-08 0.12516982917989572 0.0001024122762505146 0.08190794698093576 0.00011935305039246252']
['59852.33821246169 0.20681578642060922 6.12781015651452e-05 0.02376715755271592 1.948748975036293e-05 6.357412786148928e-05 5.2126560037359764e-08 0.12482750815502058 0.00010235026129392296 0.08198827826558863 0.00011929200190441334']
['59852.338415088656 0.20712360958523823 6.12996516744749e-05 0.02384207825740435 1.9498055460562272e-05 6.377453123108747e-05 5.215482197022534e-08 0.12522099925107327 0.00010240575346933966 0.08190261033416496 0.00011935068344603279']
['59852.33861771563 0.20678213026981052 6.127565131839044e-05 0.023739544439188437 1.9484411336805205e-05 6.35002662898581e-05 5.211832567207249e-08 0.12468248129825862 0.00010233409315548953 0.08209964897155189 0.00011927687146487945']
['59852.33882034259 0.20684251009450097 6.127811821013376e-05 0.023760425565465204 1.9489115752423938e-05 6.355612065060218e-05 5.2130909386359547e-08 0.12479215107912398 0.00010235880122071396 0.082050359015377 0.00011929933762899423']
['59852.33902296956 0.20671896974379822 6.126971587606139e-05 0.02377214958242352 1.9490329639848524e-05 6.358748090693511e-05 5.2134156381048285e-08 0.12485372679844287 0.0001023651766798767 0.08186524294535535 0.00011930049237214264']
['59852.33922559653 0.20683915883573706 6.127836104096047e-05 0.023780113557373833 1.9490988998529968e-05 6.360878352844776e-05 5.213592008177807e-08 0.12489555439797183 0.0001023686396981616 0.08194360443776523 0.00011930790386859678']
['59852.339428223495 0.20666762223313895 6.126134786654766e-05 0.02377068844078165 1.949047021496289e-05 6.358357253861812e-05 5.213453240162522e-08 0.12484605273519776 0.00010236591499455301 0.08182156949794119 0.00011929682852070383']
['59852.33963085046 0.20685813325519953 6.128309368254289e-05 0.02380238095365951 1.949471401609625e-05 6.366834598539989e-05 5.21458840306651e-08 0.12501250500871594 0.00010238820386605175 0.08184562824648359 0.00011932712123494601']
['59852.33983347743 0.2068728595744104 6.129027338493735e-05 0.023769942171714985 1.9489416273163247e-05 6.358157636364609e-05 5.2131713241169005e-08 0.12484213325480562 0.00010236037958594143 0.08203072631960479 0.00011930693576057669']
['59852.3400361044 0.20683361777066656 6.127773612305359e-05 0.023762642943344035 1.9487288267491188e-05 6.356205185480586e-05 5.212602109626756e-08 0.12480379697134474 0.00010234920308556297 0.08202982079932182 0.0001192909062611916']
['59852.34023873137 0.20711779358368848 6.129912005466872e-05 0.02383244577206372 1.9498570380504826e-05 6.3748765556193e-05 5.215619931567331e-08 0.12517040846672123 0.00010240845788080268 0.08194738511696725 0.00011935273086528361']
['59852.340441358334 0.20681259009129793 6.127465555735295e-05 0.023776992208355885 1.949077814563698e-05 6.360043431625748e-05 5.21353560770691e-08 0.12487916075817167 0.00010236753227750516 0.08193342933312626 0.0001193050505144619']
['59852.3406439853 0.20690781824539986 6.128135417904331e-05 0.02377019897541305 1.9487187345848014e-05 6.358226328092256e-05 5.212575114368981e-08 0.124843482013724 0.00010234867303491605 0.08206433623167586 0.00011929231007078998']
['59852.34084661227 0.20689571458206366 6.128213673864253e-05 0.023787453048605224 1.949098713095591e-05 6.3628415735326e-05 5.213591508625466e-08 0.12493410214603586 0.00010236862988947433 0.0819616124360278 0.0001193098347526383']
['59852.341049239236 0.20677151311039738 6.127167998817771e-05 0.02378867327059144 1.9491976423071554e-05 6.363167967416257e-05 5.2138561317017126e-08 0.12494051087495507 0.00010237382575142624 0.0818310022354423 0.0001193089224138624']
['59852.3412518662 0.20678942511416043 6.127128157839388e-05 0.023786768485117987 1.948793916433198e-05 6.36265846149419e-05 5.2127762162648324e-08 0.12493050674956926 0.00010235262166140748 0.08185891836459117 0.00011929052396239211']
['59852.34145449317 0.20679647084810082 6.127404671789348e-05 0.02376618362467072 1.948902269750964e-05 6.357152272766393e-05 5.213066047628241e-08 0.12482239298671599 0.00010235831248692037 0.08197407786138483 0.00011929682701713668']
['59852.34165712014 0.20707847212247193 6.130530072436205e-05 0.023966836400410717 1.9562013013353727e-05 6.410824341848965e-05 5.23259003008946e-08 0.1258762415987958 0.00010274166498610151 0.08120223052367614 0.00011964192250637225']
['59852.34185974711 0.20699663714659342 6.128720209354433e-05 0.023758904994562048 1.948655839077538e-05 6.355205331655918e-05 5.212406876875213e-08 0.12478416488740574 0.00010234536969945053 0.08221247225918768 0.00011929248022977874']
['59852.342062374075 0.20701513970274166 6.129042030621884e-05 0.023782143295978015 1.948943943708572e-05 6.361421282142322e-05 5.2131775201719643e-08 0.12490621478980052 0.00010236050124519811 0.08210892491294114 0.0001193071156154618']
['59852.34226500104 0.20685005907567944 6.127523812559468e-05 0.023776043342223222 1.9490360530626744e-05 6.35978962198651e-05 5.213423900995668e-08 0.12487417721755893 0.00010236533892135895 0.0819758818581205 0.00011930346776113852']
['59852.34246762801 0.20695017310110347 6.128665082442312e-05 0.023788543663533952 1.949078665905606e-05 6.363133299174477e-05 5.213537884938387e-08 0.12493983016561952 0.00010236757699084066 0.08201034293548395 0.00011931125004898093']
['59852.34267025498 0.2069470584482396 6.129283771612396e-05 0.023963086195194667 1.9561253192615983e-05 6.40982120958385e-05 5.232386787692358e-08 0.12585654514282915 0.00010273767433096631 0.08109051330541045 0.00011963210974579861']
['59852.34287288194 0.20679884044437974 6.127864259509169e-05 0.023732072625269465 1.9483857763630208e-05 6.348028013659645e-05 5.211684493413696e-08 0.12464323857809592 0.00010233118573335194 0.08215560186628382 0.00011927591379608356']
['59852.343075508914 0.20703105735260097 6.129156546659195e-05 0.02382321733039288 1.949585842173717e-05 6.372408064679889e-05 5.214894517040719e-08 0.12512193976046682 0.0001023942143998801 0.08190911759213415 0.0001193366294978794']
['59852.34327813588 0.20683827684533 6.127844524702824e-05 0.02378283189967449 1.949093080338582e-05 6.36160547488539e-05 5.213576441715866e-08 0.12490983140585342 0.00010236833405139612 0.08192844543947657 0.00011930768486711685']
['59852.343480762844 0.2068101319125402 6.127652644918917e-05 0.023777711100565584 1.948815932351982e-05 6.360235726161418e-05 5.212835106051407e-08 0.12488293645255033 0.00010235377795966294 0.08192719545998986 0.00011929421007028868']
['59852.343683389816 0.20678189069562525 6.127484384363427e-05 0.02379608122340896 1.9493459804927722e-05 6.365149500708861e-05 5.214252917508271e-08 0.12497941819017312 0.00010238161662251956 0.08180247250545213 0.00011931723224372219']
['59852.34388601678 0.20670709459225026 6.126569084932567e-05 0.02376964895637896 1.9491818466072535e-05 6.358079204986257e-05 5.213813880210637e-08 0.12484059325829286 0.00010237299614533895 0.0818665013339574 0.00011930513490633473']
['59852.34408864375 0.20688696537550916 6.128061156796537e-05 0.023783195532565776 1.9491524991524378e-05 6.361702742065422e-05 5.213735379496333e-08 0.12491174124246733 0.00010237145478741796 0.08197522413304183 0.00011931147517919728']
['59852.34429127072 0.20679511101866158 6.127563305427881e-05 0.023791853002740716 1.949190935717012e-05 6.364018505381409e-05 5.213838192424862e-08 0.12495721114884832 0.00010237347351454896 0.08183789986981325 0.00011931065034453832']
['59852.34449389768 0.20692286349861758 6.12888457903931e-05 0.023777829692198656 1.949114955116629e-05 6.36026744791707e-05 5.2136349539688955e-08 0.12488355930776605 0.00010236948293679777 0.08203930419085152 0.00011931401281939148']
['59852.344696524655 0.2068343327641658 6.127618488798795e-05 0.023811918035523686 1.949543769463141e-05 6.369385646811174e-05 5.214781977883451e-08 0.1250625947243891 0.00010239200469869439 0.08177173803977669 0.000119326834620903']
['59852.34489915162 0.2068149725226221 6.127675560753214e-05 0.023755696930469493 1.9485537541757207e-05 6.354347215255773e-05 5.212133812728334e-08 0.12476731581128936 0.00010234000809746434 0.08204765671133274 0.00011928251353477712']
['59852.345101778585 0.2066773308042002 6.12662636615527e-05 0.02377054753814716 1.9488934434395713e-05 6.358319564196646e-05 5.213042438366268e-08 0.12484531270035273 0.00010235784892014556 0.08183201810384746 0.00011929243185804468']
['59852.34530440556 0.20700152884640174 6.128573723324458e-05 0.023846772023953557 1.9500431723197044e-05 6.378708646046606e-05 5.2161178170971705e-08 0.1252456513863107 0.00010241823384032062 0.08175587746009105 0.00011935424672458412']
['59852.34550703252 0.20674771124085534 6.126766632592314e-05 0.02377528170068932 1.9487857532194205e-05 6.359585892549563e-05 5.212754380704761e-08 0.12487017699941873 0.00010235219292118806 0.08187753424143661 0.00011928829922838517']
['59852.345709659494 0.20710240539174363 6.129703608277362e-05 0.023798601715056676 1.9492643229553635e-05 6.365823700212652e-05 5.214034493966769e-08 0.12499265606647414 0.0001023773278863111 0.08210974932526949 0.00011932495085971795']
['59852.34591228646 0.2070553725138091 6.129406654629736e-05 0.02382698994601366 1.9497239415394363e-05 6.373417191443642e-05 5.215263915304452e-08 0.12514175391813898 0.00010240146751782755 0.08191361859567012 0.00011934413744958996']
['59852.346114913424 0.20689552419421392 6.128223938011114e-05 0.02377401985310805 1.9488165550415035e-05 6.359248364347902e-05 5.21283677166679e-08 0.12486354964867674 0.00010235381066394452 0.08203197454553718 0.00011929717272790603']
['59852.346317540396 0.20715902180122947 6.130075655795348e-05 0.02385463932258844 1.9503293618210057e-05 6.380813048511347e-05 5.216883337665122e-08 0.12528697123208213 0.00010243326480152341 0.08187205056914734 0.00011937485703646514']
['59852.34652016736 0.20701269666948172 6.129584515714644e-05 0.02379715104823051 1.949308334777464e-05 6.365435665261117e-05 5.2141522200010854e-08 0.12498503701801739 0.00010237963943158951 0.08202765965146433 0.00011932632234201787']
['59852.346722794326 0.20683924419037833 6.12755997834903e-05 0.0237992312109975 1.9494866440502573e-05 6.365992082381793e-05 5.214629174659307e-08 0.12499596224263394 0.00010238900441440428 0.08184328194774439 0.00011932395968035664']
['59852.3469254213 0.20699366384172277 6.128673617046535e-05 0.023807758065992352 1.9495692740611686e-05 6.368272907796009e-05 5.214850199443916e-08 0.12504074614491784 0.00010239334422590172 0.08195291769680493 0.00011933340258365312']
['59852.34712804826 0.2066919384416762 6.126423780810269e-05 0.023784398658573035 1.949134215832114e-05 6.362024562991837e-05 5.2136864739365744e-08 0.12491806018158107 0.0001023704945289976 0.08177387826009512 0.00011930224215964797']
['59852.347330675235 0.20687244593478912 6.127882403344646e-05 0.023765164014472456 1.9486749333051615e-05 6.356879539988106e-05 5.212457951509007e-08 0.12481703789113686 0.00010234637254754 0.08205540804365226 0.00011928903658158173']
['59852.3475333022 0.2070944623382884 6.129591226100713e-05 0.023808913488174155 1.9495378245794402e-05 6.368581968554987e-05 5.214766076074593e-08 0.12504681453872982 0.00010239169246740758 0.08204764779955859 0.00011933669823758849']
['59852.347735929165 0.20669377856093327 6.12638171893897e-05 0.023762979589631313 1.9489904504750967e-05 6.356295234086793e-05 5.2133019198657394e-08 0.12480556507159303 0.00010236294382747357 0.08188821348934024 0.00011929554713249556']
['59852.34793855614 0.20692657068962989 6.128503763007749e-05 0.023794196218904586 1.9493065922505906e-05 6.364645285944792e-05 5.2141475589630116e-08 0.12496951795643167 0.00010237954791232095 0.08195705273319821 0.00011932069253927097']
['59852.3481411831 0.20686235079588233 6.128003946109732e-05 0.02377272225904937 1.9490680027815744e-05 6.35890127441754e-05 5.213509362435892e-08 0.12485673455383074 0.00010236701695281378 0.08200561624205159 0.0001193073736035259']
['59852.34834381007 0.20678352923255683 6.127385077489653e-05 0.023769580601203676 1.9491147596925916e-05 6.358060920845026e-05 5.213634431234415e-08 0.1248402342500193 0.00010236947267293024 0.08194329498253752 0.00011930630211400444']
['59852.34854643704 0.20683060850696125 6.12754890663685e-05 0.023756688173965916 1.948686464917131e-05 6.354612360301594e-05 5.212488797106432e-08 0.1247725219220899 0.00010234697819942916 0.08205808658487135 0.00011928784308083148']
['59852.348749064004 0.2069689062045283 6.128990020445406e-05 0.02376170796280721 1.9487289883271082e-05 6.355955090061879e-05 5.212602541827356e-08 0.12479888635928157 0.00010234921157180191 0.08217001984524672 0.00011929716248277411']
['59852.348951690976 0.2069661412780655 6.128824254967963e-05 0.023801772120474095 1.9493048481020286e-05 6.366671743395489e-05 5.214142893587127e-08 0.1250093073554312 0.00010237945630787966 0.08195683392263431 0.00011932226007214831']
['59852.34915431794 0.20685025694978582 6.128214826305785e-05 0.023780513897177863 1.9492080869743125e-05 6.360985438657763e-05 5.2138840698598136e-08 0.12489765702299299 0.00010237437431587777 0.08195259992679282 0.00011931476946423212']
['59852.349356944906 0.20694708082314625 6.128551748051075e-05 0.023794455963967117 1.949247190490084e-05 6.364714764450077e-05 5.2139886667980875e-08 0.12497088216369284 0.0001023764280719582 0.08197619865945341 0.00011931826212959532']
['59852.34955957188 0.2068919557605292 6.128223694374021e-05 0.023758408294784587 1.9486970309760755e-05 6.355072470773875e-05 5.212517059972147e-08 0.12478155617008714 0.00010234753313949978 0.08211039959044207 0.00011929178557038085']
['59852.34976219884 0.20680472241942144 6.127505983273612e-05 0.02381000465968018 1.9495696535762433e-05 6.368873843074223e-05 5.21485121459854e-08 0.12505254548151357 0.00010239336415841616 0.08175217693790787 0.00011932742342472419']
['59852.34996482581 0.20672494768438163 6.127240209926926e-05 0.023731380328363697 1.948512660804637e-05 6.347842833029998e-05 5.212023893179825e-08 0.12463960256493539 0.00010233784983217632 0.08208534511944623 0.00011927842540580256']
['59852.35016745278 0.20700820831303093 6.129160545864307e-05 0.023758620417867832 1.9488203327043753e-05 6.355129211004534e-05 5.212846876435184e-08 0.1247826702619109 0.00010235400907060796 0.08222553805112004 0.00011930215451752772']
['59852.350370079745 0.20685308318371348 6.12820053533101e-05 0.023755357696140837 1.948793306795598e-05 6.354256474381367e-05 5.21277458556168e-08 0.12476553411838676 0.00010235258964262596 0.08208754906532673 0.0001192960049065974']
['59852.35057270671 0.20677721016274409 6.12741000205747e-05 0.023762816030945613 1.9486472005533318e-05 6.356251484215677e-05 5.212383769920113e-08 0.12480470604488243 0.0001023449159954481 0.08197250411786165 0.00011928536022264729']
['59852.35077533368 0.20691227053681227 6.128122489497681e-05 0.02378904925655473 1.949249297726331e-05 6.363268538886157e-05 5.2139943033874145e-08 0.1249424855911488 0.00010237653874613083 0.08196978494566347 0.00011931615234437772']
['59852.35097796065 0.20695520933152706 6.128730208137388e-05 0.02379543938816353 1.9492124738414912e-05 6.364977817932457e-05 5.213895804172355e-08 0.12497604720674124 0.00010237460471856573 0.08197916212478581 0.00011931761432284906']
['59852.35118058762 0.20694982364009773 6.128636237938821e-05 0.0238003060438383 1.949399417656135e-05 6.366279586515592e-05 5.214395855133379e-08 0.12500160737310032 0.00010238442319622557 0.08194821626699741 0.00011932555605117247']
['59852.35138321458 0.20690328149748496 6.128096001260661e-05 0.023806014991322278 1.9496187818907956e-05 6.367806657460008e-05 5.214982626600334e-08 0.12503159134097835 0.00010239594442703759 0.08187169015650661 0.0001193326673429018']
['59852.35158584155 0.20720579405645695 6.131490001724143e-05 0.023996342388613694 1.9566322286129938e-05 6.418716818946972e-05 5.2337427058263765e-08 0.1260312100242316 0.00010276429772127069 0.08117458403222536 0.00011966627699678081']
['59852.35178846852 0.20697720600200897 6.129250120990435e-05 0.023758345896982353 1.948866461126981e-05 6.355055780154272e-05 5.212970264107028e-08 0.12478122845053759 0.00010235643178187926 0.08219597755147139 0.00011930469325087185']
['59852.351991095486 0.20727122348794538 6.131253405491354e-05 0.02384719331241317 1.9500172600518086e-05 6.378821335358901e-05 5.2160485050715844e-08 0.12524786403578347 0.0001024168729018807 0.08202335945216191 0.00011936684081952961']
['59852.35219372245 0.20714334275344726 6.130177840822239e-05 0.023853706278830638 1.9501621283128386e-05 6.380563471156432e-05 5.2164360092705776e-08 0.12528207079217774 0.00010242448152903566 0.08186127196126952 0.00011936784513637904']
['59852.35239634942 0.2067852200592512 6.127865377311101e-05 0.023720968309426268 1.9481362654130334e-05 6.345057750204018e-05 5.211017083312082e-08 0.12458491759152453 0.00010231808116665092 0.08220030246772668 0.00011926467684050537']
['59852.35259897639 0.2070882826211958 6.129743036726614e-05 0.023829717800078552 1.9498934018170802e-05 6.374146857760383e-05 5.215717200024532e-08 0.12515608088276553 0.00010241036774249371 0.08193220173843027 0.00011935350179522441']
['59852.35280160336 0.2079818519158594 6.156716684382009e-05 0.023824749355091122 1.9497407336291484e-05 6.372817861828905e-05 5.215308832011721e-08 0.12512998610867188 0.00010240234945531242 0.08285186580718754 0.00011948538491021697']
['59852.353004230325 0.2070870500686008 6.129890178846505e-05 0.023823556322778203 1.9497762052131403e-05 6.372498740837527e-05 5.2154037139937645e-08 0.12512372018265863 0.00010240421245867334 0.08196332988594215 0.0001193489760733329']
['59852.35320685729 0.20704362389816225 6.129093650374202e-05 0.023816193121390657 1.9496868512836524e-05 6.370529177984066e-05 5.215164703580947e-08 0.12508504790646355 0.00010239951950019184 0.0819585759916987 0.00011934085843237388']
['59852.35340948426 0.20709341243546836 6.129620733371849e-05 0.023827349972115615 1.9498399341973096e-05 6.373513493853335e-05 5.2155741809324e-08 0.1251436448115316 0.00010240755956918645 0.08194976762393677 0.00011935046413992144']
['59852.35361211123 0.2070011098339101 6.128826114660103e-05 0.02379207123415268 1.9493069937941846e-05 6.364076879512421e-05 5.214148633041127e-08 0.12495835732223048 0.00010237956900179542 0.08204275251167961 0.00011932236631649306']
['59852.35381473819 0.20689937623604931 6.128251763080523e-05 0.023809984670576524 1.949533025261195e-05 6.36886849624287e-05 5.2147532385078325e-08 0.12505244049672545 0.00010239144040237368 0.08184693573932386 0.00011932960250852592']
['59852.35401736516 0.20720726583067586 6.130690163135177e-05 0.023825697074512375 1.9498544440825318e-05 6.373071364737403e-05 5.2156129930325143e-08 0.12513496362664064 0.00010240832164299013 0.08207230220403522 0.00011935661074850593']
['59852.35421999213 0.20682817242088855 6.127807581371874e-05 0.023794196665813283 1.949357698079749e-05 6.364645405487191e-05 5.21428426056522e-08 0.1249695203036412 0.00010238223204200365 0.08185865211724735 0.00011931942010140069']
['59852.3544226191 0.2069312966328195 6.128522700923387e-05 0.023821746189688978 1.949772334580758e-05 6.37201455322609e-05 5.215393360543739e-08 0.12511421318113958 0.00010240400916915746 0.08181708345167993 0.00011934177870088167']
['59852.354625246066 0.20699307527269678 6.129032201892688e-05 0.023799192388093197 1.9494111917750973e-05 6.36598169774797e-05 5.21442734940621e-08 0.12499575834082563 0.00010238504158482654 0.08199731693187115 0.00011932812038036305']
['59852.35482787303 0.20704616989616936 6.12909139144269e-05 0.02379789866917554 1.9491554059222096e-05 6.365635644368613e-05 5.2137431547362935e-08 0.12498896359861103 0.00010237160745389758 0.08205720629755833 0.00011931689796990446']
['59852.3550305 0.2071732121152342 6.130551178051365e-05 0.02378147753225043 1.948923940279766e-05 6.361243198800849e-05 5.213124013540481e-08 0.12490271813156739 0.0001023594506449457 0.08227049398366681 0.00011931396779508161']
['59852.35523312697 0.20700679877523015 6.12915625703372e-05 0.023768277942959284 1.948691797338222e-05 6.357712476309305e-05 5.212503060655597e-08 0.12483339255755928 0.0001023472582635621 0.08217340621767087 0.0001192963407501749']
['59852.35543575393 0.20694785949451255 6.128834577688449e-05 0.02382336613109609 1.9497325022259994e-05 6.372447866978126e-05 5.2152868140537425e-08 0.1251227212767652 0.00010240191713371847 0.08182513821774737 0.00011934158521122426']
['59852.355638380905 0.20708447275182465 6.129873960813248e-05 0.02385076087888994 1.9499854107075875e-05 6.379775614080894e-05 5.2159633121208784e-08 0.12526660125467406 0.00010241520014220523 0.08181787149715058 0.00011935832060528325']
['59852.35584100787 0.20700635326135589 6.129048777534128e-05 0.023803993628735497 1.9491875111753384e-05 6.367265968640736e-05 5.213829032210825e-08 0.12502097494083772 0.00010237329365416693 0.08198537832051817 0.00011931812580384237']
['59852.356043634834 0.20713148571660783 6.130371540733222e-05 0.023801460760289675 1.9493173271969595e-05 6.366588458500645e-05 5.214176273581137e-08 0.12500767206034494 0.0001023801117225294 0.0821238136562629 0.00011933077054582688']
['59852.35624626181 0.20704580497029584 6.129737865991612e-05 0.02384575475230451 1.9505383451181306e-05 6.378436538800533e-05 5.217442341442619e-08 0.1252403085730279 0.00010244424081502788 0.08180549639726795 0.000119382541046606']
['59852.35644888877 0.20700349625591785 6.12986828177074e-05 0.023782128600601464 1.9489723654302666e-05 6.361417351315735e-05 5.213253544667743e-08 0.12490613760820096 0.00010236199398268207 0.08209735864771689 0.00011931264110435463']
['59852.35665151574 0.20712789227373624 6.129884563039853e-05 0.023826225481327058 1.9497161278936454e-05 6.373212706849202e-05 5.215243014794348e-08 0.12513773887251609 0.0001024010571372713 0.08199015340122015 0.00011934623990076156']
['59852.35685414271 0.20716133714882878 6.130501600443939e-05 0.023814085227453888 1.9497661876068567e-05 6.36996534312768e-05 5.215376918169261e-08 0.1250739770349469 0.00010240368632388954 0.08208736011388187 0.00011935166509113365']
['59852.35705676967 0.20715683805161217 6.130782302409653e-05 0.023800152568670865 1.9494685354351108e-05 6.366238533857543e-05 5.214580736413708e-08 0.12500080130604446 0.00010238805333167599 0.0821560367455677 0.00011933969427229176']
['59852.357259396646 0.20711956556021144 6.129708464812906e-05 0.023857110188306604 1.950049940400655e-05 6.381473973709268e-05 5.216135920854121e-08 0.12529994846799689 0.00010241858930675711 0.08181961709221455 0.00011936037877765839']
['59852.35746202361 0.2070625061265421 6.129619922324916e-05 0.02376932900510295 1.9488950606599564e-05 6.357993622083525e-05 5.2130467642254e-08 0.12483891284192727 0.000102357933858191 0.08222359328461482 0.00011930788181396087']
['59852.357664650575 0.20717036488055263 6.130385836374935e-05 0.023810728005850643 1.9494438092245986e-05 6.369067328987829e-05 5.2145145969409863e-08 0.1250563445685433 0.0001023867546861659 0.08211402031200932 0.00011933654337816122']
['59852.35786727755 0.20700970945458907 6.129288611673265e-05 0.023793406646075453 1.9492797724050613e-05 6.364434085241114e-05 5.2140758192825256e-08 0.12496537104031226 0.00010237813930698853 0.08204433841427682 0.00011932351527037706']
['59852.35806990451 0.2070983237945752 6.130311164646084e-05 0.023783512854523705 1.949089597751953e-05 6.361787621658961e-05 5.213567126238946e-08 0.12491340784938922 0.00010236815114243453 0.082184915945186 0.00011932019890135435']
['59852.358272531485 0.20700844345400432 6.129278042824335e-05 0.023832551964799373 1.9498425865961404e-05 6.374904960827367e-05 5.2155812757623994e-08 0.1251709662016774 0.00010240769887584772 0.08183747725232693 0.00011934882371297654']
['59852.35847515845 0.20704599769390555 6.129583632448715e-05 0.02382910068804804 1.9499515258894634e-05 6.373981788129967e-05 5.2158726745360005e-08 0.12515283974815147 0.00010241342047738778 0.08189315794575408 0.00011935530254076083']
['59852.358677785414 0.2071089097338843 6.130393299067705e-05 0.02382035998568221 1.949717624840921e-05 6.371643761260022e-05 5.2152470189381877e-08 0.12510693269791076 0.00010240113575845175 0.08200197703597353 0.00011934892041717967']
['59852.35888041239 0.2071608183389785 6.130178758847732e-05 0.023880096774396703 1.9505045008946687e-05 6.38762259354296e-05 5.2173518124433064e-08 0.12542067633611714 0.00010244246328228303 0.08174014200286137 0.00011938327958673567']
['59852.35908303935 0.2069217867460787 6.128673736113284e-05 0.02377508348891225 1.9490724979716988e-05 6.359532873416622e-05 5.2135213864985554e-08 0.1248691359711778 0.00010236725304473209 0.0820526507749009 0.00011931101655881023']
['59852.359285666316 0.2070286339684833 6.129579133776582e-05 0.02380529460228706 1.9495317228836413e-05 6.367613962542523e-05 5.2147497548132874e-08 0.12502780778512113 0.00010239137200019125 0.08200082618336219 0.0001193363611637479']
['59852.35948829329 0.20721889143571243 6.131340055338737e-05 0.023831035120372157 1.9498441491526286e-05 6.374499224208051e-05 5.21558545540255e-08 0.12516299958178656 0.00010240778094289016 0.08205589185392587 0.00011935948510724693']
['59852.35969092025 0.2071396591908447 6.130451689655742e-05 0.023827981596279503 1.9498258275957077e-05 6.373682445295115e-05 5.2155364475647497e-08 0.12514696216533353 0.00010240681867624516 0.08199269702551118 0.00011935409629882691']
['59852.359893547226 0.20710193698662166 6.130186669185206e-05 0.023816675481064413 1.949616470539033e-05 6.370658203070498e-05 5.214976444027927e-08 0.12508758130811143 0.00010239582303251223 0.08201435567851023 0.00011934330075212082']
['59852.36009617419 0.20720012866558635 6.130412506578573e-05 0.023829477047165662 1.9498064927784634e-05 6.374082459413911e-05 5.215484729384276e-08 0.1251548164241894 0.0001024058031921462 0.08204531224139694 0.00011935302374682461']
['59852.360298801155 0.2073145870198127 6.131727092002706e-05 0.023838716175610588 1.9497501672636433e-05 6.376553808929661e-05 5.215334065785859e-08 0.125203341258459 0.00010240284491930901 0.0821112457613537 0.00011935723840910549']
['59852.36050142813 0.2071570710765262 6.130515984172992e-05 0.023806181269970306 1.9495544540100862e-05 6.367851134886502e-05 5.214810557689519e-08 0.1250324646532054 0.00010239256586187429 0.08212460642332081 0.00011934219776339934']
['59852.36070405509 0.2071064741593289 6.130516129476049e-05 0.023839321738742196 1.9500972130361595e-05 6.3767157893763e-05 5.2162623691501457e-08 0.12520652173709138 0.00010242107211324367 0.08189995242223752 0.00011936665704543653']
['59852.36090668206 0.20714555348405667 6.130434122012028e-05 0.023846609804309644 1.950294474655953e-05 6.37866525435216e-05 5.2167900189295144e-08 0.1252447993923826 0.00010243143249243451 0.08190075409167408 0.00011937512561201813']
['59852.36110930903 0.20731459792211537 6.132019318840034e-05 0.02381959521245853 1.9496232603670877e-05 6.371439194135832e-05 5.2149946059556187e-08 0.12510291603182003 0.00010239617964112857 0.08221168189029535 0.00011935302131810912']
['59852.361311935994 0.20714098715048765 6.130513851411222e-05 0.023800433390640557 1.949168814105166e-05 6.366313650167805e-05 5.21377901992277e-08 0.12500227621134746 0.00010237231166518729 0.08213871093914019 0.00011932480967472241']
['59852.36151456297 0.2070370566980048 6.129629370771026e-05 0.023787348145063645 1.949390446147408e-05 6.362813513167574e-05 5.214371857486978e-08 0.12493355118205696 0.00010238395200354034 0.08210350551594783 0.0001193302528706159']
['59852.36171718993 0.20719420318152082 6.130863820720376e-05 0.023811175404499077 1.949546582674927e-05 6.369187002444014e-05 5.214789502867682e-08 0.1250586943513607 0.00010239215245141424 0.08213550883016013 0.00011934362991988914']
['59852.361919816896 0.20716044068314377 6.130240512509404e-05 0.023840136667555033 1.9501905437376017e-05 6.376933772483579e-05 5.216512016922865e-08 0.1252108018253941 0.00010242597393579842 0.08194963885774967 0.00011936944756016093']
['59852.36212244387 0.2071500450293729 6.130625487520186e-05 0.023811190242462234 1.949683920746642e-05 6.369190971410707e-05 5.2151568647666416e-08 0.12505877228183948 0.00010239936558543288 0.08209127274753342 0.00011934859429051667']
['59852.36232507083 0.20717109166172365 6.130849102183939e-05 0.023815731813018153 1.9498047158501424e-05 6.370405783853354e-05 5.215479976326699e-08 0.12508262506837264 0.00010240570986607892 0.082088466593351 0.00011935518624907127']
['59852.3625276978 0.20734410296628233 6.131875817217828e-05 0.023834769852808885 1.9500419564289503e-05 6.375498217701211e-05 5.21611456474383e-08 0.1251826147731559 0.00010241816998051211 0.08216148819312644 0.0001193711508109692']
['59852.36273032477 0.2073147553431593 6.131829677821165e-05 0.023811177544904392 1.9495931409737066e-05 6.369187574975253e-05 5.214914040403694e-08 0.12505870559298526 0.00010239459774021569 0.08225604975017403 0.00011935068984367634']
['59852.362932951735 0.2073136399536047 6.132407824479924e-05 0.023828776190094526 1.949931347435042e-05 6.373894989048748e-05 5.215818699733226e-08 0.12515113545217713 0.00010241236068461357 0.08216250450142756 0.00011936889960776904']
['59852.3631355787 0.20720251697583833 6.130760463501286e-05 0.023813225963332983 1.9493899569910215e-05 6.369735500888581e-05 5.2143705490557704e-08 0.12506946409313544 0.00010238392631255365 0.0821330528827029 0.00011933604130042804']
['59852.36333820567 0.20725197307164434 6.13133926910677e-05 0.023860068365993706 1.9501641603649423e-05 6.382265248669682e-05 5.21644144475187e-08 0.1253154851155132 0.00010242458825446125 0.08193648795613115 0.00011937390168032959']
['59852.36354083264 0.20748262676378726 6.132936744750669e-05 0.023889619913431935 1.9506440050724652e-05 6.390169912284487e-05 5.217724968400925e-08 0.12547069282264675 0.00010244979018237738 0.08201193394114051 0.00011940373034342119']
['59852.36374345961 0.2072068742397264 6.13058186934149e-05 0.02381429019543572 1.9497243229548888e-05 6.370020169459586e-05 5.215264935542345e-08 0.12507505354745652 0.00010240148755015174 0.08213182069226987 0.00011935019085931007']
['59852.363946086574 0.20716835412479978 6.130390446378916e-05 0.023811781953358993 1.9495022267251887e-05 6.369349246560455e-05 5.2146708563356415e-08 0.12506188000713755 0.0001023898228322053 0.08210647411766223 0.00011933919943637872']
['59852.36414871354 0.20716608440133466 6.131095497764717e-05 0.023789445921346193 1.9492724483416238e-05 6.363374641679959e-05 5.214056228343036e-08 0.12494456891463339 0.00010237775463979118 0.08222151548670127 0.00011933246769155644']
['59852.36435134051 0.20716862647247902 6.131020239230561e-05 0.023815208688640524 1.949815264805826e-05 6.370265854726377e-05 5.2155081934433634e-08 0.1250798775663893 0.00010240626390786902 0.08208874890608972 0.00011935654068777964']
['59852.364553967476 0.2072507637158199 6.131673418849791e-05 0.023828064486890718 1.949959983064174e-05 6.373704617480849e-05 5.2158952964042325e-08 0.12514739751518236 0.00010241386465673183 0.08210336620063755 0.00011936641724316892']
['59852.36475659444 0.20721923404427758 6.130985750210672e-05 0.02381451535299318 1.949414951779543e-05 6.37008039624655e-05 5.2144374069405556e-08 0.12507623609765325 0.00010238523906405163 0.08214299794662433 0.00011933832496365798']
['59852.36495922141 0.20732996011021446 6.131864044763638e-05 0.02384330634129172 1.950079388862238e-05 6.37778161995111e-05 5.216214691748698e-08 0.12522744927149013 0.00010242013596965536 0.08210251083872433 0.00011937277712438963']
['59852.36516184838 0.2073706124419462 6.132436637057507e-05 0.02383771564193992 1.9501030499647416e-05 6.376286178880222e-05 5.216277982192773e-08 0.12519808635472648 0.00010242137867461879 0.08217252608721973 0.00011937678467927578']
['59852.36536447535 0.20725331453102147 6.13154357767822e-05 0.02384561549948265 1.9500079427463673e-05 6.378399290439292e-05 5.216023582462891e-08 0.1252395772031652 0.00010241638354760334 0.08201373732785627 0.0001193679114480374']
['59852.365567102315 0.20731950612030844 6.132036279138949e-05 0.02381133923960644 1.9494085829715998e-05 6.369230826254417e-05 5.21442037118819e-08 0.12505955482986578 0.00010238490456783612 0.08225995129044267 0.00011934343541323307']
['59852.36576972928 0.20752266058832985 6.132916193853315e-05 0.02388148587350663 1.9506143392065995e-05 6.387994159912353e-05 5.217645615977503e-08 0.1254279720247197 0.00010244823210118696 0.08209468856361016 0.00011940228793763332']
['59852.36597235625 0.20770824158810844 6.136130808235979e-05 0.02384962138516616 1.9501802081044e-05 6.379470813982135e-05 5.2164843704167464e-08 0.12526061651872983 0.00010242543109792017 0.08244762506937861 0.00011939924231406607']
['59852.36617498322 0.2075060268572546 6.133502583997238e-05 0.023828081135513192 1.949830178370406e-05 6.373709070775911e-05 5.21554808533449e-08 0.12514748495542644 0.00010240704718331965 0.08235854190182818 0.00011936996568482685']
['59852.36637761018 0.2074726659385258 6.133282973487627e-05 0.02382981971824372 1.949891963477844e-05 6.374174119575134e-05 5.2157133526497536e-08 0.12515661616724644 0.0001024102921994666 0.08231604977127938 0.00011937162121571212']
['59852.366580237154 0.20767557876802334 6.135419538349436e-05 0.02404358202220066 1.957256201198172e-05 6.431352820955737e-05 5.23541175324293e-08 0.12627931734349085 0.0001027970693906603 0.08139626142453249 0.00011971455536593798']
['59852.36678286412 0.2073362376815949 6.132138294605067e-05 0.023827125700706074 1.9498920185333447e-05 6.373453504099684e-05 5.215713499916225e-08 0.12514246691547307 0.00010241029509103702 0.08219377076612183 0.00011936574277006563']
['59852.36698549109 0.2075613890599649 6.133990455695396e-05 0.023863700738863333 1.950454914734027e-05 6.38323686227868e-05 5.217219175761373e-08 0.12533456270411417 0.00010243985896712327 0.08222682635585074 0.0001194006222607752']
['59852.367188118056 0.2075346966402874 6.134000345326227e-05 0.023870431569754637 1.950574829690349e-05 6.385037274055935e-05 5.217539933039512e-08 0.1253699137066945 0.00010244615702155196 0.08216478293359289 0.00011940607652934044']
['59852.36739074502 0.20762255102374877 6.134933871084505e-05 0.02403557979098995 1.9570769561796335e-05 6.429212325740698e-05 5.234932295583686e-08 0.12623728881822455 0.00010278765526153537 0.08138526220552422 0.00011970398253367443']
['59852.36759337199 0.20737912787650592 6.132704197206702e-05 0.02384268533892215 1.9501205156237103e-05 6.377615509704407e-05 5.216324700612256e-08 0.12522418770442306 0.00010242229598864024 0.08215494017208286 0.00011937894618662163']
['59852.36779599896 0.20757676090316496 6.13393144259531e-05 0.0238774264265445 1.950729946799833e-05 6.386908309407744e-05 5.217954851606445e-08 0.1254066513999186 0.00010245430392856266 0.08217010950324635 0.00011941271242096559']
['59852.36799862592 0.2077070162512542 6.135315967813918e-05 0.023866282787791696 1.9503903790262288e-05 6.383927527573225e-05 5.21704655093949e-08 0.1253481238854606 0.00010243646948667169 0.0823588923657936 0.00011940452455156405']
['59852.368201252895 0.20756690498324018 6.134142665492098e-05 0.02386504360669299 1.9503119259187123e-05 6.38359606236777e-05 5.216836698840966e-08 0.12534161558137075 0.00010243234905035254 0.08222528940186943 0.00011939496118360401']
['59852.36840387986 0.20763034755267692 6.134586709515969e-05 0.023862560070221854 1.950448831683838e-05 6.382931747904359e-05 5.217202904374706e-08 0.1253285717973837 0.00010243953947919318 0.08230177575529324 0.00011940341141846063']
['59852.36860650683 0.2078320418188307 6.136020638322172e-05 0.023901452537285872 1.9509237760733613e-05 6.393334988882975e-05 5.2184733202954856e-08 0.12553283895633335 0.00010246448403746645 0.08229920286249734 0.0001194321791497408']
['59852.3688091338 0.20765179597560302 6.135044666789278e-05 0.023862891297197784 1.95052802209647e-05 6.38302034691361e-05 5.217414728670771e-08 0.1253303114348623 0.00010244369863952048 0.0823214845407407 0.00011940933253851998']
['59852.36901176076 0.20793586831172578 6.137100016507784e-05 0.023912437513174293 1.951035849915043e-05 6.396273330416401e-05 5.218773103587838e-08 0.12559053315742802 0.00010247037026864722 0.08234533515429776 0.00011944277476790149']
['59852.369214387734 0.20792701712012382 6.13693398174594e-05 0.0239460505760846 1.9517075591306323e-05 6.405264397835953e-05 5.2205698404278616e-08 0.1257670723533855 0.00010250564911400381 0.08215994476673832 0.00011947218910656186']
['59852.3694170147 0.20795311438890887 6.13731207878532e-05 0.02391345709621568 1.951021438190064e-05 6.396546055930567e-05 5.218734554053907e-08 0.12559588811037647 0.00010246961335031849 0.0823572262785324 0.00011944321502456382']
['59852.369619641664 0.2079904741684465 6.138046379722843e-05 0.02390749887917243 1.9512236683488552e-05 6.39495230854494e-05 5.219275494044056e-08 0.1255645949536367 0.00010248023468218778 0.08242587921480979 0.00011945610003879732']
['59852.369822268636 0.20797674129247984 6.198622008089124e-05 0.02390459813235057 1.9730470989488373e-05 6.394176395611568e-05 5.277650399173637e-08 0.12554935993881605 0.00010362642326411961 0.08242738135366379 0.00012075068148226391']
['59852.3700248956 0.20830066496940808 6.200842225167306e-05 0.02394230008224218 1.9734595266139604e-05 6.404261188366951e-05 5.278753590796699e-08 0.12574737438152409 0.00010364808438098532 0.08255329058788399 0.00012078066826272174']
['59852.370227522566 0.20828575277158135 6.200905757381974e-05 0.02391989460437965 1.97313877090954e-05 6.398268007603661e-05 5.277895610025549e-08 0.12562969855241415 0.00010363123796793804 0.08265605421916719 0.00012076653801430549']
['59852.37043014954 0.20843498725220427 6.20217668880187e-05 0.023985547649099194 1.9740542064214635e-05 6.41582936322744e-05 5.2803442837533554e-08 0.12597451496375628 0.0001036793175641525 0.082460472288448 0.00012081432224070172']
['59852.3706327765 0.20863551914005218 6.203985503111169e-05 0.024010877683880452 1.9746521468132517e-05 6.42260482582261e-05 5.281943698358858e-08 0.12610755086071665 0.00010371072199649432 0.08252796827933553 0.00012085055841540612']
['59852.370835403475 0.20857054846010376 6.204021648027125e-05 0.023955838059036078 1.9739244504014053e-05 6.407882425217727e-05 5.2799972028796044e-08 0.12581847720081973 0.00010367250264713264 0.08275207125928402 0.0001208179467878785']
['59852.37103803044 0.20863633753960587 6.203878159566771e-05 0.024042205076360748 1.9750834792973448e-05 6.430984505431718e-05 5.2830974579716235e-08 0.12627208548508798 0.00010373337601351602 0.08236425205451789 0.00012086944908055327']
['59852.371240657405 0.20899671716768947 6.206999860963786e-05 0.024014692937204807 1.9746692776549767e-05 6.423625357630542e-05 5.281989521184738e-08 0.12612758895590762 0.00010371162172557652 0.08286912821178186 0.00012086680771969417']
['59852.37144328438 0.20900319621339689 6.207778371162e-05 0.024185656336498305 1.9813061820883958e-05 6.469355895589119e-05 5.2997423976117493e-08 0.1270255059690037 0.00010406019863909643 0.08197769024439319 0.00012117003000476183']
['59852.37164591134 0.2090102921678521 6.207134343939553e-05 0.024049962234502446 1.9752488622952338e-05 6.433059446713394e-05 5.2835398364862014e-08 0.1263128268618826 0.00010374206209533792 0.0826974653059695 0.0001208936190382451']
['59852.37184853831 0.20916843689666192 6.208315561524962e-05 0.02405512686683646 1.9751739488093042e-05 6.434440920268369e-05 5.283339452425866e-08 0.12633995203170412 0.00010373812756351389 0.08282848486495781 0.00012089630813854978']
['59852.37205116528 0.2092994984170376 6.209686419983425e-05 0.024033817528680362 1.975027047800301e-05 6.428740942954824e-05 5.282946510884218e-08 0.12622803323886747 0.00010373041217438556 0.08307146517817013 0.00012089672846409275']
['59852.372253792244 0.20927730483955945 6.209748246797657e-05 0.024063925405164114 1.9753598410742293e-05 6.436794417523545e-05 5.283836690624948e-08 0.1263861628422485 0.00010374789081272214 0.08289114199731096 0.00012091204314272905']
['59852.372456419216 0.20930934467506157 6.209896022954421e-05 0.024058426369059048 1.975613923571623e-05 6.435323495206971e-05 5.284516329035256e-08 0.12635728135010005 0.00010376123548170289 0.08295206332496152 0.00012092425253140873']
['59852.37265904618 0.2096140304110482 6.212522485482013e-05 0.02413117383329999 1.9765512880947745e-05 6.45478251794873e-05 5.287023660082963e-08 0.12673935836817224 0.00010381046681170036 0.08287467204287596 0.00012097998422435467']
['59852.372861673146 0.20955900635978802 6.212384780234264e-05 0.0240915789349665 1.976124183031829e-05 6.444191385526887e-05 5.285881208284856e-08 0.12653140196936188 0.00010378803482310027 0.08302760439042614 0.00012096002909312526']
['59852.37306430012 0.20967699517235278 6.213004790601005e-05 0.02409637860536868 1.9759818908409543e-05 6.445475236400365e-05 5.2855005947463504e-08 0.12655661032231452 0.0001037805614937476 0.08312038485003825 0.00012095680136627553']
['59852.37326692708 0.20984012176874567 6.214542263333384e-05 0.02413830249395217 1.9766445648280485e-05 6.456689344134308e-05 5.287273163497686e-08 0.126776798812774 0.00010381536579979248 0.08306332295597166 0.0001209945607472518']
['59852.37346955405 0.2099612934257622 6.216232409982866e-05 0.02415228108367 1.9770672227115873e-05 6.46042843934615e-05 5.288403719655702e-08 0.12685021577557776 0.00010383756421804556 0.08311107765018444 0.00012102228836139595']
['59852.37367218102 0.21009985923586327 6.217062647517138e-05 0.024160026988501036 1.977315217489424e-05 6.462500370510148e-05 5.289067074189377e-08 0.12689089804884998 0.0001038505891538563 0.08320896118701329 0.0001210377282665134']
['59852.373874807985 0.21015915756756992 6.217546478236474e-05 0.024155404108616642 1.9770948439900932e-05 6.461263808854818e-05 5.2884776030676133e-08 0.1268666182175244 0.00010383901491544608 0.08329253935004552 0.00012103028315059546']
['59852.37407743496 0.21027265175694806 6.218618027843184e-05 0.024141995822127844 1.976656825243288e-05 6.4576772625135e-05 5.287305958551295e-08 0.1267961965447891 0.0001038160097291643 0.08347645521215896 0.00012101605221501635']
['59852.37428006192 0.21039612554773965 6.219931365742561e-05 0.02416819400960108 1.9771050280594468e-05 6.46468494492764e-05 5.288504844159688e-08 0.12693379206723257 0.00010383954979303818 0.08346233348050708 0.000121042995339159']
['59852.37448268889 0.2104466487852811 6.219988268251713e-05 0.0241921344525916 1.977467019750353e-05 6.471088709367558e-05 5.289473125957434e-08 0.12705952968798112 0.00010385856196167821 0.08338711909729998 0.00012105959812615704']
['59852.37468531586 0.21073340398907076 6.222486471471619e-05 0.02427041962636356 1.9787868835540845e-05 6.492028999076156e-05 5.29300359400066e-08 0.1274706913149347 0.00010392788253960529 0.08326271267413607 0.00012113190561503904']
['59852.374887942824 0.2108294613686739 6.223394570749082e-05 0.024219193129165754 1.97796585520096e-05 6.478326561687392e-05 5.2908074474322843e-08 0.1272016445859546 0.00010388476130257144 0.0836278167827193 0.00012109957732880474']
['59852.37509056979 0.2110105240185537 6.225389982827469e-05 0.024248660502560533 1.9784182274780802e-05 6.486208709814642e-05 5.292017485819199e-08 0.1273564102025238 0.00010390852035073952 0.08365411381602988 0.00012113021359392094']
['59852.37529319676 0.21084022538979721 6.223361173827017e-05 0.024229809510709112 1.9782986840397168e-05 6.481166308914913e-05 5.291697722304413e-08 0.1272574028923798 0.00010390224180880866 0.08358282249741741 0.00012111440163286076']
['59852.375495823726 0.21136598531785317 6.228555887244405e-05 0.024413463948912025 1.9852556368926467e-05 6.530291538596861e-05 5.3103066876052717e-08 0.12822197452159678 0.00010426762798805919 0.08314401079625638 0.00012145463799422812']
['59852.37569845069 0.21126370833819097 6.227264558687639e-05 0.02428586383607286 1.9791542450116103e-05 6.496160129021337e-05 5.2939862392421165e-08 0.12755180586172724 0.00010394717673380306 0.08371190247646373 0.00012117300829523547']
['59852.37590107766 0.21135931941643366 6.22825431058105e-05 0.02431692637912949 1.9795357135210435e-05 6.504468964773383e-05 5.2950066190557335e-08 0.12771494947021791 0.00010396721184459264 0.08364436994621574 0.00012119528173351282']
['59852.37610370463 0.21137077558383252 6.22835952743709e-05 0.024283175956711055 1.9792132633478727e-05 6.495441155429965e-05 5.2941441057958854e-08 0.12753768884827235 0.00010395027643633787 0.08383308673556017 0.00012118129480861597']
['59852.3763063316 0.21171199539527039 6.230938128473428e-05 0.024340648844957034 1.9800578072331458e-05 6.510814423090664e-05 5.2964031534261244e-08 0.1278395422529256 0.0001039946327328333 0.08387245314234479 0.00012123259723903996']
['59852.376508958565 0.21168039999821509 6.230656747183415e-05 0.024352390488611694 1.980038901076059e-05 6.513955163641358e-05 5.2963525818571285e-08 0.12790121054943118 0.00010399363976239805 0.0837791894487839 0.00012123029927024695']
['59852.37671158553 0.21188484506754013 6.232667805940986e-05 0.024357862933325924 1.9803199177102596e-05 6.515418973098612e-05 5.2971042656625756e-08 0.12792995238091348 0.0001040083990394044 0.08395489268662665 0.00012125329632080646']
['59852.3769142125 0.21179202639936417 6.232105665211564e-05 0.02431886494082293 1.979590489103111e-05 6.504987505405315e-05 5.295153136780889e-08 0.1277251309917171 0.0001039700887133987 0.08406689540764709 0.00012121754596306676']
['59852.37711683947 0.21201444443959017 6.23338258070925e-05 0.024424450455593986 1.9811951901818735e-05 6.533230289598116e-05 5.299445508358536e-08 0.12827967676257349 0.00010405436923224126 0.08373476767701668 0.00012129640388761964']
['59852.37731946643 0.21250601847562262 6.240092137668625e-05 0.02443627154936147 1.9812649300566576e-05 6.536392282044917e-05 5.2996320536661404e-08 0.12834176233908334 0.00010405803204079085 0.08416425613653927 0.00012133403900333012']
['59852.377522093404 0.21213789869248487 6.235027920241875e-05 0.024381119215323238 1.9804680358153623e-05 6.521639733162162e-05 5.29750046278171e-08 0.12805209671913467 0.00010401617835164719 0.0840858019733502 0.00012127210180210967']
['59852.37772472037 0.21225272579977678 6.235653901409988e-05 0.024456046771104332 1.981956296886927e-05 6.541681902702254e-05 5.301481372128782e-08 0.12844562379781688 0.00010409434332389324 0.0838071020019599 0.00012134236799176747']
['59852.37792734734 0.2125467449089949 6.238423280790107e-05 0.024435044958372978 1.9813006032750862e-05 6.536064184534044e-05 5.2997274749946933e-08 0.12833532015952195 0.0001040599056341957 0.08421142474947294 0.00012132706401964944']
['59852.378129974306 0.21244672661486846 6.238151275887157e-05 0.024400261012222816 1.9811183299295248e-05 6.526759920718849e-05 5.299239916945282e-08 0.12815263136671648 0.00010405033245428178 0.08429409524815198 0.00012131745471255083']
['59852.37833260127 0.21275810686668037 6.240064309140315e-05 0.02449001876734035 1.982266111862204e-05 6.550768980227736e-05 5.302310087839021e-08 0.128624048147796 0.00010411061511881324 0.08413405871888438 0.00012137899504707702']
['59852.37853522824 0.21266471967682313 6.239708604467752e-05 0.024448497075151874 1.981709339497997e-05 6.539662454921288e-05 5.300820792478676e-08 0.12840597203336068 0.00010408137287279396 0.08425874764346244 0.00012135208496747166']
['59852.37873785521 0.2129659437898424 6.242010850322316e-05 0.02449637993014868 1.9825417430011575e-05 6.552470510487833e-05 5.303047366128676e-08 0.1286574576163271 0.00010412509154417844 0.0843084861735153 0.00012140141940948505']
['59852.37894048217 0.21269922274069028 6.239968132489533e-05 0.0244456228779518 1.9817952608794896e-05 6.538893643674544e-05 5.3010506212615645e-08 0.12839087645983088 0.00010408588555039338 0.0843083462808594 0.00012135728985214725']
['59852.379143109145 0.21277073273500857 6.240574494962238e-05 0.024477726657176915 1.9822770382353384e-05 6.547480996877246e-05 5.3023393144994306e-08 0.12855948874567708 0.00010411118898294845 0.0842112439893315 0.00012138211018993091']
['59852.37934573611 0.213271857563613 6.244432417994754e-05 0.024507085658144735 1.9827141913005742e-05 6.555334156756689e-05 5.303508643427499e-08 0.1287136851793316 0.00010413414870276125 0.0845581723842814 0.00012142163953900134']
['59852.37954836308 0.21319239017519398 6.243958805740512e-05 0.024495009979932404 1.9823871435048206e-05 6.552104066204286e-05 5.3026338321111715e-08 0.12865026249964498 0.00010411697182273218 0.084542127675549 0.00012140447264542627']
['59852.37975099005 0.21306292087009499 6.242950356323935e-05 0.024484506583759676 1.982291863353882e-05 6.549294541128417e-05 5.302378969808643e-08 0.12859509760377982 0.00010411196761312406 0.08446782326631516 0.00012139499460615626']
['59852.37995361701 0.21331038797037696 6.244674637079261e-05 0.02455331606516429 1.9835289726366402e-05 6.567700203476541e-05 5.305688080018658e-08 0.12895649193888806 0.00010417694184015968 0.0843538960314889 0.00012145958728509706']
['59852.380156243984 0.21337496158842734 6.245309399067849e-05 0.02454774070700757 1.983280355465391e-05 6.566208865980492e-05 5.305023060661652e-08 0.128927209595628 0.00010416388421561929 0.08444775199279933 0.00012145165179565678']
['59852.38035887095 0.2132553522566902 6.24420793590613e-05 0.024517846315919245 1.983034194742675e-05 6.558212496043636e-05 5.3043646119924865e-08 0.12877020123907168 0.00010415095560623294 0.08448515101761853 0.00012143489954858452']
['59852.380561497914 0.2134092654840938 6.246196374256284e-05 0.024534875722759995 1.983016365346754e-05 6.562767646088389e-05 5.304316920622853e-08 0.12885964140105038 0.00010415001918837994 0.08454962408304342 0.00012144432226957811']
['59852.380764124886 0.2132799399713713 6.245287543453337e-05 0.024510733096819087 1.9828645634440178e-05 6.556309800277106e-05 5.303910869812917e-08 0.12873284189505824 0.0001041420463993707 0.08454709807631305 0.00012143281055089691']
['59852.38096675185 0.2135395075544516 6.247319182210004e-05 0.024562081451850543 1.9835464298841398e-05 6.570044833088691e-05 5.3057347759385285e-08 0.12900252863366882 0.00010417785871240231 0.0845369789207828 0.00012147397228353967']
['59852.38116937882 0.21352429887060476 6.247298223382872e-05 0.02451906909754561 1.9828844125231083e-05 6.558539574598523e-05 5.303963963578515e-08 0.12877662341147905 0.00010414308889302041 0.0847476754591257 0.00012144404667733956']
['59852.38137200579 0.21363460151558195 6.247838091587006e-05 0.024567157033595435 1.9836583976257e-05 6.57140248674208e-05 5.306034275426531e-08 0.12902918610081635 0.0001041837393710977 0.0846054154147656 0.00012148168434465077']
['59852.38157463275 0.213738232648515 6.249680483838313e-05 0.024727100204058078 1.9901124468576276e-05 6.614185253452869e-05 5.323298037413417e-08 0.12986922376080923 0.00010452271254504348 0.08386900888770576 0.00012178196932543314']
['59852.381777259725 0.21355040386975485 6.247703304995548e-05 0.024535731241058824 1.983131339204978e-05 6.562996486367658e-05 5.304624461091134e-08 0.12886413466942662 0.00010415605773135389 0.08468626920032823 0.00012145725182492132']
['59852.38197988669 0.2138640773752839 6.249781215220015e-05 0.02461104214143123 1.9843320139350084e-05 6.583141195717187e-05 5.3078361135000396e-08 0.129259675112559 0.00010421911837893953 0.08460440226272489 0.00012152201923723581']
['59852.382182513655 0.21381232601772732 6.249125955985077e-05 0.024566373021577236 1.9834975317045375e-05 6.571192773484703e-05 5.3056039795184967e-08 0.12902506839063677 0.0001041752905307005 0.08478725762709055 0.00012148106304495569']
['59852.38238514063 0.2133681814664326 6.245920230106485e-05 0.024534023902480197 1.98313295832701e-05 6.562539794982245e-05 5.3046287920369304e-08 0.12885516755504306 0.00010415614276927574 0.08451301391138955 0.0001214481536650891']
['59852.38258776759 0.21374549934298892 6.248672356384682e-05 0.02459591544988932 1.9839830707148768e-05 6.579094997849083e-05 5.3069027347043694e-08 0.12918022820320021 0.00010420079152914268 0.0845652711397887 0.00012150059908101056']
['59852.38279039456 0.2135270120665157 6.24726670248803e-05 0.024549105635990023 1.9834067381929338e-05 6.566573967147763e-05 5.305361118406355e-08 0.12893437834028373 0.0001041705219639146 0.08459263372623196 0.00012146741032653978']
['59852.38299302153 0.21371298719095405 6.248065859309394e-05 0.024587518828903303 1.983931548606575e-05 6.576849008378169e-05 5.306764919608324e-08 0.12913612830306356 0.00010419808553605962 0.08457685888789049 0.00012149515927643686']
['59852.383195648494 0.21365760850345095 6.248166726595984e-05 0.02458342860876881 1.983902459138176e-05 6.575754926440794e-05 5.3066871089749186e-08 0.12911464605445805 0.0001041965577278454 0.0845429624489929 0.00012149436771581774']
['59852.383398275466 0.21361338378617345 6.247965013729506e-05 0.024541249860007934 1.9832039048728632e-05 6.564472646846298e-05 5.3048185650363897e-08 0.12889311901264672 0.00010415986895340668 0.08472026477352673 0.00012146186636829539']
['59852.38360090243 0.21375790782298532 6.24962041584811e-05 0.024769467930842386 1.990860662143089e-05 6.625518082268482e-05 5.325299418273553e-08 0.13009174333425624 0.00010456200956633871 0.08366616448872907 0.0001218153905660925']
['59852.383803529396 0.213549674815993 6.24758232288269e-05 0.024527869381641497 1.9830776323605483e-05 6.56089353882453e-05 5.3044808021034225e-08 0.12882284339097427 0.00010415323699372628 0.08472683142501872 0.00012145421056674379']
['59852.38400615637 0.21360587410743131 6.247532406351303e-05 0.024548945107738262 1.9833503176004506e-05 6.566531027879237e-05 5.305210200487265e-08 0.12893353522971776 0.00010416755869750267 0.08467233887771355 0.00012146623564529624']
['59852.38420878333 0.21362946223070745 6.248266245477973e-05 0.024537426498641192 1.9831417760553893e-05 6.563449946240007e-05 5.304652378340433e-08 0.12887303833319955 0.00010415660588526206 0.0847564238975079 0.00012146061772021311']
['59852.3844114103 0.21354595945216187 6.246699889241058e-05 0.024568249702447222 1.983471991919485e-05 6.57169476178229e-05 5.305535663837209e-08 0.12903492490781104 0.00010417394915543514 0.08451103454435083 0.00012146743445575694']
['59852.38461403727 0.21377196179516314 6.24915794521472e-05 0.02455476924786587 1.9833364578639787e-05 6.568088911392797e-05 5.305173127452485e-08 0.12896412420097622 0.00010416683077016697 0.08480783759418692 0.00012147397307705315']
['59852.384816664235 0.2133954961486634 6.24661572034399e-05 0.02448463263863078 1.9823806479097232e-05 6.549328259205454e-05 5.302616457219271e-08 0.12859575965667427 0.0001041166306675275 0.08479973649198913 0.00012141784702968173']
['59852.38501929121 0.21350218183624844 6.247127818494314e-05 0.02452094464743765 1.9831658011450636e-05 6.559041260373875e-05 5.30471664240396e-08 0.12878647398864315 0.00010415786770719872 0.08471570784760529 0.00012145584384199412']
['59852.38522191817 0.21372619708775034 6.249053781845811e-05 0.024577219944653363 1.9838920830657028e-05 6.574094187644204e-05 5.306659354298885e-08 0.12908203752443995 0.00010419601276605583 0.0846441595633104 0.00012149846251366399']
['59852.38542454514 0.2134658002890277 6.246913453024716e-05 0.024489542768549345 1.982546338414502e-05 6.550641656596653e-05 5.303059658275724e-08 0.12862154815414573 0.00010412533289992134 0.08484425213488198 0.00012142684102156969']
['59852.38562717211 0.21373746895554607 6.248784792444839e-05 0.024550475565548267 1.983268681906557e-05 6.566940405905549e-05 5.3049918353743924e-08 0.1289415733484678 0.00010416327110853765 0.08479589560707829 0.00012146900092723123']
['59852.385829799074 0.2136230978835565 6.247724405422479e-05 0.024575458884371064 1.9838857206740925e-05 6.573623126385363e-05 5.306642335709395e-08 0.12907278825825141 0.00010419567860683261 0.08455030962530508 0.00012149133905324084']
['59852.38603242604 0.21349086955558869 6.246996353004984e-05 0.024559134725514208 1.9837707479506484e-05 6.569256621219167e-05 5.306334798276506e-08 0.12898705212980152 0.00010418964012345842 0.08450381742578716 0.00012148241622762339']
['59852.38623505301 0.21352313085121838 6.246919366220837e-05 0.024554446472008093 1.9833585826834405e-05 6.568002572950317e-05 5.305232308534541e-08 0.12896242894962234 0.00010416799278799584 0.08456070190159604 0.00012146345490840629']
['59852.386437679976 0.21370256336401058 6.248668957309543e-05 0.024560209045739072 1.983488806315321e-05 6.569543988234715e-05 5.305580640210527e-08 0.12899269456795734 0.00010417483226446014 0.08470986879605324 0.00012147831926369742']
['59852.38664030695 0.21359092550186054 6.24774679356839e-05 0.02457410089257983 1.9837617178531453e-05 6.573259880828635e-05 5.30631064391257e-08 0.12906565594842348 0.0001041891658536316 0.08452526955343706 0.00012148586864705689']
['59852.38684293391 0.21365907161382888 6.248574878464596e-05 0.024572743630630584 1.9836859956331064e-05 6.57289683049537e-05 5.306108096591207e-08 0.1290585274717993 0.00010418518884627661 0.08460054414202958 0.00012148671687107281']
['59852.38704556088 0.21345796559782287 6.247009334601408e-05 0.024511116176894818 1.9827996463376936e-05 6.556412269331983e-05 5.3037372247984175e-08 0.12873485387024589 0.00010413863688748391 0.08472311172757699 0.00012143874281069834']
['59852.38724818785 0.21348808770833338 6.246834839145425e-05 0.024542542591946187 1.983204021646195e-05 6.564818436221199e-05 5.3048188773902214e-08 0.12889990857114594 0.00010415987508645983 0.08458817913718744 0.00012145605842765942']
['59852.387450814815 0.21353467741348864 6.247356068070375e-05 0.024558133681186478 1.983521958085658e-05 6.56898885457545e-05 5.3056693169856756e-08 0.12898179454404665 0.00010417657342886858 0.08455288286944199 0.00012147305971081003']
['59852.38765344178 0.21368500876679927 6.248121550990063e-05 0.024605828140833008 1.9842889563263594e-05 6.581746516778546e-05 5.307720939865515e-08 0.12923229065563557 0.00010421685694991384 0.0844527181111637 0.00012151154498282644']
['59852.38785606875 0.21377350329537304 6.24930960550719e-05 0.0245955539345743 1.9841384338539813e-05 6.578998297093807e-05 5.30731831136929e-08 0.1291783294883104 0.00010420895135787718 0.08459517380706263 0.00012151087440084057']
['59852.38805869572 0.21373528338476933 6.248970506896815e-05 0.024582366363207955 1.984026395229281e-05 6.575470789244512e-05 5.30701862227789e-08 0.12910906703365524 0.00010420306697632778 0.08462621635111409 0.00012150408391029364']
['59852.38826132269 0.21354776933314587 6.247319112612149e-05 0.024543972578075994 1.983255043838504e-05 6.565200939349117e-05 5.304955355274479e-08 0.12890741900249997 0.00010416255482345084 0.0846403503306459 0.00012146084734114654']
['59852.388463949654 0.21363877551475563 6.248161065075957e-05 0.024556717693475137 1.9835617577728268e-05 6.568610095846681e-05 5.30577577609402e-08 0.128974357633798 0.00010417866374857285 0.08466441788095763 0.00012147899262815492']
['59852.38866657662 0.21352641777898979 6.247083039713963e-05 0.024573061050895788 1.9839413631542196e-05 6.572981736384855e-05 5.306791172276758e-08 0.1290601945950409 0.00010419860100599894 0.08446622318394889 0.00012149054737762748']
['59852.38886920359 0.21370023039312916 6.24854846385441e-05 0.024573188237750426 1.9836706786731e-05 6.573015757253111e-05 5.306067125668549e-08 0.12906086259322702 0.0001041843843840914 0.08463936779990214 0.00012148589111500083']
['59852.389071830556 0.213632088311978 6.247970314908252e-05 0.02458237589754879 1.9841196047691453e-05 6.575473339559592e-05 5.3072679459587764e-08 0.12910911710897474 0.00010420796243535427 0.08452297120300326 0.0001215031388093562']
['59852.38927445752 0.2137428631075214 6.248631240407961e-05 0.024593271194612132 1.9840187841244325e-05 6.57838769314629e-05 5.306998263539083e-08 0.12916634030783683 0.00010420266723342608 0.08457652279968458 0.0001215019962651658']
['59852.38947708449 0.21391269812433314 6.251280066213487e-05 0.024569411463943487 1.9834672751795678e-05 6.572005518227374e-05 5.305523047156989e-08 0.12904102659634187 0.00010417370142749833 0.08487167152799127 0.00012149078284268884']
['59852.38967971146 0.2136204023272719 6.247711666949686e-05 0.02456922438990374 1.983701906783984e-05 6.571955478297708e-05 5.3061506568989793e-08 0.12904004406462047 0.00010418602451596556 0.08458035826265142 0.00012148299392003516']
['59852.38988233842 0.21351374383636723 6.246870900612958e-05 0.024547783276725986 1.9835297416426718e-05 6.566220252839504e-05 5.305690137012123e-08 0.12892743317608188 0.00010417698222913193 0.08458631066028535 0.0001214709151659827']
['59852.390084965395 0.2138537050085696 6.24956557392464e-05 0.02458163629629976 1.9839031854643615e-05 6.57527550561892e-05 5.306689051805216e-08 0.12910523264863322 0.00010419659587522907 0.08474847235993638 0.00012150159496181194']
['59852.39028759236 0.21350973058071324 6.247170992074728e-05 0.02454478647858893 1.9834311774212638e-05 6.565418647399234e-05 5.305426490238189e-08 0.12891169369006794 0.00010417180553683109 0.0845980368906453 0.00012146801887420962']
['59852.39049021933 0.21372294960565033 6.248644461316102e-05 0.02458653985863689 1.983864440425793e-05 6.576587146265497e-05 5.306585413747931e-08 0.1291309866525047 0.00010419456094673283 0.08459196295314564 0.00012149511221146331']
['59852.3906928463 0.21364020170392178 6.247851837771207e-05 0.024604968667344046 1.9841082914730385e-05 6.581516618536151e-05 5.307237684328557e-08 0.12922777661420193 0.00010420736824963437 0.08441242508971986 0.00012150201996752568']
['59852.39089547326 0.21362097186936643 6.248612028886287e-05 0.02456308806580732 1.9836308794215835e-05 6.570314089537442e-05 5.3059606677255205e-08 0.1290078154716771 0.00010418229408726806 0.08461315639768932 0.00012148442546285614']
['59852.391098100234 0.21369858385612278 6.248276195496282e-05 0.024599272424865176 1.984185363026216e-05 6.57999294601924e-05 5.3074438409446916e-08 0.1291978593742919 0.00010421141612532648 0.08450072448183088 0.00012150767380032631']
['59852.3913007272 0.21390881917685164 6.250323976046912e-05 0.02458862796631197 1.9840446491974842e-05 6.577145688548182e-05 5.307067449324455e-08 0.1291419536045797 0.00010420402569314518 0.08476686557227195 0.00012151186753240339']
['59852.39150335416 0.2139917736425968 6.250763369465159e-05 0.024572541713897212 1.983543802671186e-05 6.572842820333673e-05 5.305727748477551e-08 0.12905746698475426 0.00010417772072852869 0.08493430665784255 0.00012149157076232104']
['59852.391705981136 0.21376751716094947 6.24874919665584e-05 0.024586445997929217 1.9839493802038204e-05 6.57656203971829e-05 5.30681261686622e-08 0.12913049368660304 0.0001041990220695284 0.08463702347434643 0.00012149947675820159']
['59852.3919086081 0.21351819601155186 6.247094072575924e-05 0.02453834906166589 1.983154486711889e-05 6.56369672013193e-05 5.3046863777322286e-08 0.12887788372723682 0.00010415727346175888 0.08464031228431504 0.00012145516065671704']
['59852.39211123507 0.21344901285346377 6.24681303554527e-05 0.024524828856057536 1.9831248520615247e-05 6.56008023684758e-05 5.304607108806309e-08 0.12880687424399967 0.00010415571702003808 0.0846421386094641 0.000121452380372161']
['59852.39231386204 0.21339169162786567 6.246649911014409e-05 0.024505577606184707 1.982796031626797e-05 6.554930772010675e-05 5.303727555905862e-08 0.12870576473836506 0.00010413844703922253 0.0846859268895006 0.00012143673111056057']
['59852.392516489 0.21385499428506755 6.249609460747262e-05 0.024599909017812744 1.9841552100309076e-05 6.580163226547546e-05 5.3073631855118784e-08 0.12920120282464675 0.0001042098324596065 0.08465379146042079 0.00012151317221785227']
['59852.392719115975 0.21388810152402715 6.249691590069428e-05 0.024652485781205134 1.984786870647408e-05 6.594226842994055e-05 5.309052797435786e-08 0.1294773412878421 0.00010424300791215379 0.08441076023618505 0.00012154204702765134']
['59852.39292174294 0.2134557584092725 6.24684967574436e-05 0.02451863230252316 1.983063900725701e-05 6.558422737477615e-05 5.304444071724217e-08 0.1287743293199746 0.00010415251579441707 0.0846814290892979 0.00012144982352165456']
['59852.393124369904 0.21352332792566342 6.247390253855386e-05 0.024525030689002872 1.982994513287224e-05 6.56013422459704e-05 5.3042584691389724e-08 0.12880793429098147 0.00010414887149617773 0.08471539363468195 0.00012144947892981702']
['59852.39332699688 0.21360493731479935 6.247885878884728e-05 0.024584335351346825 1.9838730564743692e-05 6.57599746856416e-05 5.306608460583575e-08 0.129119408357914 0.00010419501347029251 0.08448552895688535 0.0001214915990002237']
['59852.39352962384 0.21357490136142177 6.247514193714598e-05 0.0245529045690971 1.9834459689234164e-05 6.56759013350485e-05 5.3054660556278246e-08 0.1289543307200478 0.00010417258240143995 0.08462057064137396 0.00012147045025129088']
['59852.39373225081 0.21378662715917424 6.248944798460046e-05 0.024570682727350378 1.9837392581295963e-05 6.572345565042799e-05 5.306250567004615e-08 0.12904770339994948 0.00010418798624630233 0.08473892375922476 0.00012149101854655664']
['59852.39393487778 0.21359855936558925 6.247894680023674e-05 0.02455072385716493 1.9833209522138986e-05 6.567006820759532e-05 5.305131651807844e-08 0.12894287740107632 0.0001041660163977888 0.08465568196451292 0.0001214667763853607']
['59852.39413750474 0.21362781533329536 6.247934829832258e-05 0.02456172989563555 1.9836076565589797e-05 6.569950796266185e-05 5.305898549517518e-08 0.12900068222497663 0.0001041810743991061 0.08462713310831874 0.00012147989638921818']
['59852.394340131716 0.2139204663823686 6.249845478877876e-05 0.02463386326554535 1.984658921293623e-05 6.589245556573784e-05 5.308710549164857e-08 0.1293795339576962 0.00010423628788306844 0.08454093242467242 0.00012153707484807648']
['59852.39454275868 0.21349987097191817 6.247621915461092e-05 0.02450595064927355 1.982859300277223e-05 6.555030556299038e-05 5.303896791510199e-08 0.12870772399828545 0.00010414176997254323 0.08479214697363271 0.00012144458082956638']
['59852.394745385645 0.2134312045045701 6.246646376854724e-05 0.024531575446259342 1.9832075664383822e-05 6.56188486404024e-05 5.304828359259109e-08 0.12884230801606797 0.00010416006126252009 0.08458889648850212 0.00012145524878719388']
['59852.39494801262 0.213846063344515 6.249675770894457e-05 0.024604005432913714 1.9842677273215755e-05 6.581258965559775e-05 5.307664154973947e-08 0.12922271760984094 0.00010421574198117518 0.08462334573467406 0.00012151858129857096']
['59852.39515063958 0.2134750837434006 6.246920272735709e-05 0.024552504501724443 1.9835232674243166e-05 6.567483120563795e-05 5.305672819300293e-08 0.1289522295258637 0.0001041766421966553 0.08452285421753691 0.00012147087745118819']
['59852.39535326655 0.21370882420959134 6.248627974333625e-05 0.02455667927288876 1.983470545592779e-05 6.568599818827793e-05 5.3055317950969646e-08 0.12897415584500402 0.00010417387319289808 0.08473466836458732 0.00012147728599278337']
['59852.39555589352 0.21352102238820242 6.2468674103656e-05 0.024549859304905344 1.9832959478249966e-05 6.5667755640105e-05 5.30506476824326e-08 0.12893833668542726 0.00010416470314206916 0.08458268570277516 0.00012146036647789342']
['59852.395758520484 0.21372835047930858 6.248599542825429e-05 0.02458135653243366 1.9837456429925786e-05 6.57520067233793e-05 5.3062676457021715e-08 0.12910376330059695 0.00010418832158574469 0.08462458717871163 0.00012148953032880804']
['59852.39596114746 0.21355239709767332 6.247569515515078e-05 0.024553167468528616 1.9834023233587922e-05 6.567660455763778e-05 5.305349309285741e-08 0.128955711494373 0.00010417029009237354 0.08459668560330033 0.00012146876892044551']
['59852.39616377442 0.2137727267622529 6.249393012254959e-05 0.0245699070207032 1.983724429583826e-05 6.572138073366686e-05 5.306210902528006e-08 0.129043629310416 0.00010418720743612532 0.0847290974518369 0.00012149265613813996']
['59852.396366401386 0.2135210846114421 6.247230230902746e-05 0.024549561172427924 1.983302987258368e-05 6.566695817359277e-05 5.305083597833472e-08 0.12893677086359204 0.0001041650728602084 0.08458431374785005 0.00012146254961823848']
['59852.39656902836 0.21372432928720775 6.248869061602247e-05 0.024588604154349096 1.9838541061519487e-05 6.577139319150541e-05 5.306557770877921e-08 0.12914182854174946 0.00010419401818024942 0.08458250074545828 0.00012149580190052297']
['59852.39677165532 0.21352769579767905 6.247153468399053e-05 0.024527835874715985 1.983064358145959e-05 6.560884576147515e-05 5.3044452952653125e-08 0.1288226674092226 0.0001041525398185903 0.08470502838845645 0.00012145140672893036']
['59852.39697428229 0.2137175449301953 6.248582962749184e-05 0.024580253078003496 1.9836567863123513e-05 6.574905512292491e-05 5.306029965367971e-08 0.12909796784665703 0.00010418365474329577 0.08461957708353826 0.00012148544283125527']
['59852.39717690926 0.2137229359281964 6.248530033407926e-05 0.024584121797631343 1.9839358941832502e-05 6.575940345657547e-05 5.306776543474012e-08 0.12911828675226547 0.0001041983137701287 0.08460464917593094 0.00012149774216164791']
['59852.397379536225 0.2136402978141555 6.24822208004068e-05 0.02458447167374249 1.983754915757498e-05 6.576033933073612e-05 5.3062924491706264e-08 0.12912012433688283 0.00010418880860070895 0.08452017347727267 0.00012148800662528771']
['59852.3975821632 0.21364212683725856 6.247977030929409e-05 0.02457574170946819 1.9836343311899337e-05 6.573698778506771e-05 5.305969900767459e-08 0.12907427368418167 0.00010418247537762257 0.08456785315307688 0.0001214813149159618']
['59852.39778479016 0.21359394232231727 6.248089793193372e-05 0.02454774866133947 1.983297561170216e-05 6.566210993663249e-05 5.305069083736816e-08 0.12892725137258126 0.00010416478787658697 0.084666690949736 0.00012146672647171768']
['59852.39798741713 0.21351571969757735 6.247110865786266e-05 0.024548301610441886 1.983182891696995e-05 6.566358900525314e-05 5.304762357459759e-08 0.12893015551702675 0.00010415876532022033 0.0845855641805506 0.00012145652641984792']
['59852.3981900441 0.21343344488608065 6.246802480604323e-05 0.024497833471264475 1.9825387407667047e-05 6.552859314275339e-05 5.303039335532819e-08 0.12866509176084284 0.00010412493386379753 0.08476835312523781 0.00012142592793678227']
['59852.398392671064 0.2138614386638979 6.249443568037587e-05 0.02460686864430464 1.984162715602179e-05 6.5820248382421e-05 5.30738326196177e-08 0.1292377554847933 0.0001042102266597783 0.0846236831791046 0.00012151265708349483']
['59852.39859529803 0.21360242885859188 6.2475751235959e-05 0.02453407334714745 1.9831398189928405e-05 6.562553020802754e-05 5.304647143446675e-08 0.1288554272434215 0.00010415650309836348 0.08474700161517038 0.000121456974399072']
['59852.398797925 0.2136918636397495 6.248837508650449e-05 0.02456374045435547 1.9837603578850003e-05 6.57048859518829e-05 5.306307006170507e-08 0.12901124188211907 0.00010418909442673321 0.08468062175763044 0.00012149141705657402']
['59852.399000551966 0.21352814592459662 6.246658989007772e-05 0.024534846319967083 1.983130245284564e-05 6.562759781214721e-05 5.304621534992962e-08 0.12885948697461705 0.00010415600027755064 0.08466865894997957 0.00012145183097142788']
['59852.39920317894 0.21344938803720898 6.246890732949483e-05 0.024515729175954865 1.9827343274989653e-05 6.557646187992294e-05 5.30356250520076e-08 0.12875908180648563 0.00010413520627620616 0.08469030623072335 0.00012143519081851448']
['59852.3994058059 0.2135196059286713 6.247764172914113e-05 0.024531554336722654 1.9831192675909675e-05 6.561879217507282e-05 5.304592171056834e-08 0.1288421971466526 0.00010415542371801301 0.08467740878201871 0.00012145702122937869']
['59852.39960843287 0.2136842020674511 6.2482056145208e-05 0.024549025322836888 1.983181178820642e-05 6.566552484399333e-05 5.3047577757330623e-08 0.12893395652750467 0.000104158675358227 0.08475024553994642 0.00012146208047169885']
['59852.39981105984 0.21355474257233625 6.247583288863485e-05 0.024564285781213197 1.9835035466197567e-05 6.570634463196706e-05 5.305620068652773e-08 0.12901410599376678 0.00010417560644011328 0.08454063657856947 0.00012147339903161514']
['59852.400013686805 0.2138778595826157 6.250650641498556e-05 0.02475007235712981 1.99054481088537e-05 6.620330012637457e-05 5.3244545562744313e-08 0.1299898758252616 0.00010454542073977785 0.0838879837573541 0.00012180643801484306']
['59852.40021631377 0.21350066129580064 6.24714392628902e-05 0.024543928353679054 1.9833994521780817e-05 6.565189109884616e-05 5.305341629242e-08 0.12890718673150764 0.00010417013929506732 0.084593474564293 0.00012146645069454655']
['59852.40041894074 0.2138669752766662 6.249928751215258e-05 0.024582489899647925 1.9838793417176284e-05 6.575503833673206e-05 5.3066252728110244e-08 0.1291097158594954 0.00010419534357760654 0.0847572594171708 0.00012150238912376243']
['59852.40062156771 0.21357337360486447 6.247530845162561e-05 0.02455246450451883 1.9833971868618038e-05 6.567472421819286e-05 5.305335569808667e-08 0.12895201945650647 0.00010417002031837205 0.084621354148358 0.00012146833867002467']
['59852.40082419468 0.2136367675223207 6.248290268471984e-05 0.024557919306293103 1.98359032098654e-05 6.56893151201418e-05 5.305852179062978e-08 0.12898066862548901 0.0001041801639173603 0.08465609889683168 0.00012148094369799828']
['59852.401026821644 0.21356114162158815 6.247257547209856e-05 0.02455145652387429 1.9834686851745324e-05 6.567202799798917e-05 5.30552681871444e-08 0.12894672544051625 0.0001041737754818557 0.0846144161810719 0.00012147015347097051']
['59852.40122944861 0.2136037506965347 6.247936252464806e-05 0.024537003512990936 1.982943682582293e-05 6.563336802950771e-05 5.30412250345913e-08 0.12887081676991038 0.0001041462018162969 0.08473293392662432 0.00012144999832954812']
['59852.40143207558 0.21354482360890215 6.24797892458021e-05 0.024526497010564294 1.983132299483459e-05 6.560526446991432e-05 5.304627029714109e-08 0.12881563555968645 0.00010415610816614806 0.0847291880492157 0.00012145871287198043']
['59852.401634702546 0.21359046102268187 6.247462305812179e-05 0.02453753243325413 1.9831181527940713e-05 6.563478282403525e-05 5.3045891891167234e-08 0.12887359471246917 0.00010415536516775585 0.08471686631021269 0.00012145541823847536']
['59852.40183732951 0.2138238365709444 6.249264252176932e-05 0.024604293228173875 1.984130680454483e-05 6.581335947136671e-05 5.307297572010367e-08 0.12922422913956869 0.00010420854414151696 0.0845996074313757 0.00012151029191573915']
['59852.40203995648 0.21373215436204254 6.248912062498284e-05 0.0245834171001957 1.9839975881590815e-05 6.575751848043652e-05 5.306941567023803e-08 0.12911458561027153 0.00010420155399995178 0.08461756875177101 0.00012150248578728142']
['59852.40224258345 0.2136304297635111 6.247584890993947e-05 0.024555076332441934 1.9832103162922462e-05 6.56817105261671e-05 5.304835714768945e-08 0.12896573704013622 0.00010416020568761799 0.08466469272337487 0.00012146019984301223']
['59852.40244521041 0.21359460169955255 6.247725068883893e-05 0.02457927174466963 1.983903691630681e-05 6.574643018089288e-05 5.306690405735834e-08 0.12909281378502957 0.0001041966224595946 0.08450178791452298 0.00012149215195074667']
['59852.402647837385 0.21373653449554741 6.248588527463849e-05 0.024614533396847056 1.9842303789570435e-05 6.584075062199581e-05 5.307564252842323e-08 0.1292780115380623 0.00010421378040740775 0.08445852295748513 0.00012151130764401594']
['59852.40285046435 0.2136893167918571 6.248557625470682e-05 0.024567534899026862 1.9835543450347195e-05 6.571503560945838e-05 5.305755947961051e-08 0.1290311706881663 0.00010417827442409241 0.0846581461036908 0.00012148069847454897']
['59852.40305309132 0.21386169415818415 6.249208631715377e-05 0.024602823425876115 1.9840954127073102e-05 6.580942793689517e-05 5.307203235265925e-08 0.12921650958968547 0.00010420669184387133 0.08464518456849868 0.00012150841731054749']
['59852.40325571829 0.2134863259658259 6.247251346202878e-05 0.02452421314659542 1.9829617349814e-05 6.559915542386396e-05 5.304170791333963e-08 0.12880364047581627 0.0001041471499465021 0.08468268549000962 0.00012144728807282013']
['59852.40345834525 0.2136297069864499 6.248391186881382e-05 0.02458036308134387 1.9838144372964083e-05 6.574934936788923e-05 5.3064516617275674e-08 0.12909854559529343 0.00010419193473195423 0.08453116139115646 0.00012149155734295904']
['59852.403660972224 0.21372321021312632 6.248948466523671e-05 0.02458898008600006 1.9840009207903167e-05 6.577239876092584e-05 5.3069504813890896e-08 0.1291438029726894 0.00010420172903310488 0.08457940724043692 0.00012150282312446681']
['59852.40386359919 0.21391678210159987 6.249884544542815e-05 0.024619180064834257 1.9844019109573653e-05 6.585317986870287e-05 5.308023079157443e-08 0.12930241630690262 0.0001042227894410381 0.08461436579469725 0.00012152569901416933']
['59852.404066226154 0.21391090435792282 6.249880221246452e-05 0.024651973340322507 1.9851541269652905e-05 6.594089771566302e-05 5.31003516144205e-08 0.12947464989665183 0.00010426229658431148 0.08443625446127098 0.00012155956057434434']
['59852.404268853126 0.21355517501208596 6.247744473426771e-05 0.024536973838572614 1.9832748414895422e-05 6.563328865420755e-05 5.305008311476569e-08 0.128870660916873 0.0001041635946160474 0.08468451409521296 0.00012146392692425079']
['59852.40447148009 0.2135256382316068 6.247495576141216e-05 0.024515324699081957 1.982852525593631e-05 6.557537995565926e-05 5.303878670092022e-08 0.12875695745316157 0.00010414141415932937 0.08476868077844524 0.0001214436257713651']
['59852.40467410706 0.21378689697701328 6.249267387054897e-05 0.024591037703932873 1.983947708871406e-05 6.577790262756453e-05 5.3068081462642817e-08 0.12915460978956345 0.0001041989342894646 0.08463228718744983 0.0001215020666266667']
['59852.40487673403 0.21383441291945587 6.249304171185295e-05 0.02459235192299477 1.984001004284407e-05 6.578141799664026e-05 5.306950704725176e-08 0.12916151220060276 0.00010420173341829868 0.08467290071885311 0.00012150465632961387']
['59852.40507936099 0.2136279277830101 6.248055390395299e-05 0.024548616487367676 1.983527863730716e-05 6.56644312610381e-05 5.305685113836149e-08 0.12893180928239328 0.00010417688359930231 0.08469611850061681 0.00012147692246927957']
['59852.405281987965 0.21348746810088737 6.246926286536737e-05 0.024533516876630586 1.983273555727429e-05 6.562404172007051e-05 5.3050048722262166e-08 0.12885250460415226 0.00010416352708652464 0.0846349634967351 0.00012145966070283384']
['59852.40548461493 0.21388907266741072 6.250075517818866e-05 0.024583309738840636 1.983803506038638e-05 6.575723130244736e-05 5.306422422001376e-08 0.1291140217376084 0.000104191360611273 0.08477505092980234 0.00012149972849299791']
['59852.405687241895 0.21377158191792245 6.248655252090052e-05 0.024577006745435163 1.983762014784297e-05 6.574037159561112e-05 5.306311438165688e-08 0.1290809177806469 0.0001041891814487551 0.08469066413727555 0.00012149055427031712']
['59852.40588986887 0.2135890988302861 6.247360957489955e-05 0.02455006376914073 1.9835831245719405e-05 6.56683025559663e-05 5.3058329295679184e-08 0.12893941055220973 0.00010417978595440864 0.08464968827807637 0.0001214758399634404']
['59852.40609249583 0.21353063322548463 6.247279914032303e-05 0.024544213325610124 1.9833290314440976e-05 6.565265336256838e-05 5.3051532627225086e-08 0.1289086834328263 0.00010416644072710597 0.08462194979265833 0.00012146397822474293']
['59852.406295122804 0.2135251772524307 6.247557200951811e-05 0.024528037828229137 1.9830201267034395e-05 6.560938596147335e-05 5.304326981774269e-08 0.12882372808943876 0.00010415021673862603 0.08470144916299194 0.00012145149132315856']
['59852.40649774977 0.21356043614422887 6.247385241570506e-05 0.024509587058473503 1.982631491406535e-05 6.556003249575135e-05 5.303287431714398e-08 0.12872682278610034 0.00010412980522093147 0.08483361335812853 0.0001214331032750478']
['59852.406700376734 0.2140600037408834 6.252876947876147e-05 0.024541108671294 1.9831762993119837e-05 6.564434880658513e-05 5.304744723667133e-08 0.1288923774752836 0.00010415841908151176 0.08516762626559982 0.00012148589744529167']
['59852.406903003706 0.21353030836279535 6.247194188525447e-05 0.02452068615042864 1.9829366516617877e-05 6.558972115707054e-05 5.3041036966397535e-08 0.1287851163362849 0.00010414583254526196 0.08474519202651046 0.00012144586431600031']
['59852.40710563067 0.21382644880803486 6.24961361650036e-05 0.024587366576443934 1.98411005156114e-05 6.576808282778998e-05 5.307242392340686e-08 0.12913532865779376 0.00010420746069123635 0.0846911201502411 0.00012151115956680786']
['59852.407308257636 0.21381701896377622 6.249901686199746e-05 0.024591069328673665 1.9839886187084195e-05 6.577798721972958e-05 5.3069175748824635e-08 0.12915477588589108 0.00010420108291535817 0.08466224307788514 0.00012150717176138037']
['59852.40751088461 0.21357239400591443 6.247651479317765e-05 0.02454884079641747 1.983246843163438e-05 6.56650312592575e-05 5.3049334195102196e-08 0.12893298737614217 0.0001041621241157268 0.08463940662977226 0.00012146218753588385']
['59852.40771351157 0.21368909035846315 6.248624041706288e-05 0.024601662184673197 1.9840664317439928e-05 6.580632176416296e-05 5.3071257148698326e-08 0.1292104106337878 0.00010420516973445342 0.08447867972467535 0.00012150410544852066']
['59852.407916138545 0.21352490613834207 6.247259234525375e-05 0.024570518552851806 1.9836208964809297e-05 6.57230165044956e-05 5.305933964627173e-08 0.12904684113892756 0.00010418176977315808 0.08447806499941451 0.00012147701818617204']
['59852.40811876551 0.21370753375448753 6.248662060967915e-05 0.024557229070572797 1.9836436688058125e-05 6.568746882725466e-05 5.305994877703993e-08 0.12897704343788235 0.00010418296579862461 0.08473049031660518 0.00012148525884985127']
['59852.408321392475 0.21352607372951463 6.246819195962594e-05 0.024562653898620487 1.9834159207289808e-05 6.570197955329185e-05 5.305385680524036e-08 0.1290055351818303 0.00010417100423996748 0.08452053854768432 0.00012146552239655497']
['59852.40852401945 0.21371380728882602 6.248827919328912e-05 0.024579301065155598 1.9838248062063118e-05 6.574650860946894e-05 5.306479397244636e-08 0.12909296777917859 0.00010419247931755839 0.08462083950964744 0.00012149427057634563']
['59852.40872664641 0.21359818603670033 6.247312993204116e-05 0.02457004767994035 1.9835487843368325e-05 6.572175697926154e-05 5.30574107380045e-08 0.1290443680669136 0.00010417798237063197 0.08455381796978673 0.0001214740465050926']
['59852.40892927338 0.21359074208653173 6.247664147589996e-05 0.024548650360312056 1.983270173716244e-05 6.566452186686221e-05 5.3049958257758355e-08 0.12893198718651291 0.00010416334945988677 0.08465875490001881 0.00012146330351513841']
['59852.40913190035 0.21357890909361815 6.247146616539271e-05 0.024565487517263243 1.9838246663770056e-05 6.570955912327222e-05 5.306479023219002e-08 0.12902041763268512 0.00010419247197358224 0.08455849146093303 0.00012148561767065074']
['59852.409334527314 0.2133991109131486 6.246292339596336e-05 0.024491417769847777 1.9825584639388148e-05 6.551143195630181e-05 5.303092092513236e-08 0.12863139585004088 0.00010412596974468566 0.08476771506310771 0.0001214241918830065']
['59852.40953715428 0.213736444456595 6.248991498383458e-05 0.02458566392900349 1.9837803318202224e-05 6.57635284621347e-05 5.306360433910399e-08 0.12912638618174102 0.00010419014347795286 0.08461005827485399 0.00012149310874548924']
['59852.40973978125 0.2137487569706383 6.24907026593817e-05 0.024573837360265638 1.9835979792768832e-05 6.573189389281629e-05 5.305872664016991e-08 0.12906427185013467 0.00010418056613849178 0.08468448512050364 0.00012148530067378487']
['59852.409942408216 0.2134848682953387 6.246886708586818e-05 0.024550198148816323 1.9834796642138172e-05 6.566866200453136e-05 5.3055561862501136e-08 0.12894011632781682 0.00010417435211207024 0.08454475196752187 0.00012146874080586107']
['59852.41014503519 0.21351908062793676 6.247427259367304e-05 0.02450912676202723 1.9828168548290044e-05 6.555880126121837e-05 5.303783255327078e-08 0.12872440526274806 0.00010413954069480066 0.0847946753651887 0.00012144166777606692']
['59852.41034766215 0.21366122292296275 6.248212721648626e-05 0.024552283597794003 1.983531070815449e-05 6.567424031568034e-05 5.305693692380488e-08 0.128951069316145 0.00010417705203862653 0.08471015360681775 0.00012147787614605333']
['59852.41055028912 0.21351761195064692 6.247216752143486e-05 0.02455160497991832 1.9832917853618274e-05 6.567242509905202e-05 5.305053634182944e-08 0.12894750514662986 0.00010416448452530607 0.08457010680401705 0.00012146197574240652']
['59852.41075291609 0.21369623520291137 6.248924585385251e-05 0.024682277916804024 1.98702866865691e-05 6.602195860886202e-05 5.315049322387481e-08 0.12963381258825646 0.0001043607494042495 0.08406242261465491 0.00012163910499341807']
['59852.410955543055 0.2135961353623267 6.248059574757136e-05 0.024547908142797253 1.9832807174881763e-05 6.566253652927683e-05 5.305024029026623e-08 0.1289280889852797 0.00010416390322942104 0.084668046377047 0.00012146581239575037']
['59852.41115817002 0.21367979345089597 6.248428457733324e-05 0.024607426829342263 1.9843242064022882e-05 6.582174145650331e-05 5.307815229341623e-08 0.12924068712889847 0.00010421870831944792 0.0844391063219975 0.0001215147109732617']
['59852.41136079699 0.21364158062540428 6.247948568329291e-05 0.024559325500989628 1.9834159647239307e-05 6.569307651235863e-05 5.3053857982049394e-08 0.1289880541018363 0.00010417100655062662 0.08465352652356797 0.00012147133298445151']
['59852.41156342396 0.21364501709580636 6.24837806684669e-05 0.024558396203912192 1.9834608286545463e-05 6.56905907607036e-05 5.305505803521309e-08 0.12898317333987497 0.00010417336284950349 0.08466184375593139 0.00012147556286759651']
['59852.41176605093 0.21350318259560122 6.246840573060196e-05 0.024564978524379246 1.9834672849227096e-05 6.570819763195311e-05 5.305523073218656e-08 0.12901774435073132 0.00010417370193921794 0.0844854382448699 0.00012146794593737117']
['59852.411968677894 0.2135673345043499 6.247777271965999e-05 0.02455246612060272 1.9834776868947756e-05 6.5674728541012e-05 5.3055508971728106e-08 0.12895202794434202 0.00010417424826128024 0.08461530656000787 0.00012147323196825027']
['59852.41217130486 0.21365921730953266 6.247895273909983e-05 0.02459185950235658 1.9838750622814497e-05 6.578010083397391e-05 5.3066138258627645e-08 0.12915892595775516 0.00010419511881730304 0.0845002913517775 0.00012149173766444601']
['59852.41237393183 0.2135066274534905 6.247429162802715e-05 0.02451183626842649 1.9825401585512366e-05 6.55660488467105e-05 5.303043127926374e-08 0.12873863586358453 0.00010412500832727084 0.08476799158990597 0.00012142921589789668']
['59852.412576558796 0.2137645577616004 6.24916558210715e-05 0.024558306205428735 1.9836147526165947e-05 6.569035002619077e-05 5.30591753057039e-08 0.12898270065876438 0.00010418144709120771 0.084781857102836 0.00012148654643736223']
['59852.41277918576 0.2134763190672546 6.253662231347659e-05 0.024537985939768962 1.9859084854608407e-05 6.5635995896364e-05 5.3120529746089445e-08 0.12887597657441685 0.00010430191625319543 0.08460034249283774 0.00012161298805829504']
['59852.41298181273 0.21355385309050767 6.254320099232044e-05 0.02457832351561364 1.9862988030979867e-05 6.57438937885997e-05 5.313097024715293e-08 0.1290878335904078 0.00010432241612909595 0.08446601950009988 0.00012163395289711689']
['59852.4131844397 0.21360291238251278 6.254504452303816e-05 0.024562545033397186 1.9860508983475687e-05 6.570168835264615e-05 5.312433910993528e-08 0.12900496341069953 0.000104309395921616 0.08459794897181325 0.0001216237339992539']
['59852.41338706667 0.21362283993979408 6.2549851616864e-05 0.02459287487964658 1.9864106745664006e-05 6.578281683926477e-05 5.3133962666848564e-08 0.1291642588216732 0.00010432829173142861 0.08445858111812088 0.00012164241198237471']
['59852.413589693635 0.21347197765292789 6.253491899858514e-05 0.024550167502147266 1.985656804127673e-05 6.566858002858398e-05 5.3113797590079765e-08 0.12893995536842054 0.00010428869769578116 0.08453202228450735 0.00012160077533158099']
['59852.4137923206 0.21349479793352277 6.253540865625979e-05 0.02455602810785297 1.985851976592338e-05 6.568425640450962e-05 5.311901820562714e-08 0.12897073586057234 0.00010429894835043794 0.08452406207295043 0.00012160981852964313']
['59852.41399494757 0.21351661944100075 6.254097075031113e-05 0.024556009936399448 1.9860450487915295e-05 6.568420779817934e-05 5.312418264174057e-08 0.12897064042226603 0.00010430908869703411 0.08454597901873473 0.00012162137561792747']
['59852.41419757454 0.2138751562775586 6.256917332422386e-05 0.024613682225911003 1.9869292667132837e-05 6.583847384784642e-05 5.3147834348130085e-08 0.12927354110247377 0.00010435552871393297 0.08460161517508483 0.00012167570761512446']
['59852.4144002015 0.2137297177376265 6.256106407291512e-05 0.02456214991947677 1.985696211538551e-05 6.570063147309122e-05 5.3114851688270635e-08 0.12900288823254608 0.00010429076741273903 0.08472682950508043 0.00012161599773661943']
['59852.414602828474 0.2136521077951175 6.255518627054285e-05 0.02453840749254138 1.98572523010758e-05 6.563712349649012e-05 5.311562789813659e-08 0.12887819061208708 0.00010429229149724686 0.08477391718303043 0.00012161428121355248']
['59852.41480545544 0.21581756155685347 6.334444238498872e-05 0.026704273274974932 2.2228440853302666e-05 7.143053938469004e-05 5.945825611813357e-08 0.14025353610806163 0.000116746012884993 0.07556402544879184 0.00013282375505009676']
['59852.415008082404 0.21357813177035426 6.254383115822387e-05 0.02454820487944957 1.985998450117141e-05 6.566333026213418e-05 5.312293618638419e-08 0.1289296474761007 0.00010430664128766498 0.08464848429425356 0.0001216207475419471']
['59852.415210709376 0.21344673853169782 6.253343157756297e-05 0.02452406300530252 1.9854833491802476e-05 6.559875381497444e-05 5.3109157890535815e-08 0.1288028519186057 0.00010427958766702982 0.08464388661309213 0.00012159219740127862']
['59852.41541333634 0.2138003584915602 6.25619163759701e-05 0.024569552000441384 1.9859183091405187e-05 6.572043109955651e-05 5.312079251704408e-08 0.12904176470820056 0.00010430243220275834 0.08475859378335965 0.00012162643932979736']
['59852.41561596331 0.2135691675290453 6.254525086006322e-05 0.02455305463662029 1.986065180277737e-05 6.567630274661344e-05 5.312472113342825e-08 0.12895511888981245 0.0001043101460229904 0.08461404863923286 0.00012162448342536061']
['59852.41581859028 0.21385823718603209 6.256592113753845e-05 0.024581222608082265 1.9864158434284326e-05 6.575164849274864e-05 5.313410092734311e-08 0.12910305991639845 0.00010432856320527482 0.08475517726963364 0.00012165090870300026']
['59852.41602121724 0.2137851924404794 6.256347578858636e-05 0.02459593647809826 1.9866342265416535e-05 6.579100622627902e-05 5.3139942398260234e-08 0.12918033864547407 0.00010434003290659945 0.08460485379500532 0.00012165948779153761']
['59852.416223844215 0.21350652498211783 6.254080962657994e-05 0.024565113016360475 1.9864183508684663e-05 6.57085573809215e-05 5.313416799817939e-08 0.12901845071617898 0.00010432869489855391 0.08448807426593885 0.00012163810853504613']
['59852.41642647118 0.21383106857473716 6.256549794817818e-05 0.024588700609637228 1.9863576706702717e-05 6.577165119715068e-05 5.31325448799457e-08 0.12914233513464932 0.00010432550791335462 0.08468873344008784 0.0001216480708226929']
['59852.416629098145 0.21376353214590382 6.25599018664559e-05 0.02456540014091308 1.986012193672406e-05 6.570932540263293e-05 5.3123303809032276e-08 0.129019958723283 0.00010430736311304655 0.08474357342262082 0.00012162963175615363']
['59852.41683172512 0.2135819995842338 6.254402812861656e-05 0.024574812769162926 1.9862262403807535e-05 6.573450298773292e-05 5.312902928662657e-08 0.12906939479602378 0.00010431860506201438 0.08451260478821002 0.0001216311095757895']
['59852.41703435208 0.21354350610388118 6.25395580259878e-05 0.02456092508284842 1.986197871568893e-05 6.569735519067303e-05 5.312827045693963e-08 0.12899645526706105 0.00010431711510340825 0.08454705083682013 0.0001216275331558756']
['59852.417236979054 0.21360787562595446 6.254645666561818e-05 0.024536969756838008 1.9855964280922725e-05 6.563327773608589e-05 5.31121826078145e-08 0.12887063947919122 0.00010428552668551852 0.08473723614676323 0.0001216039897269002']
['59852.41743960602 0.21389193397858902 6.256850131502508e-05 0.024618179482030357 1.9868639423455397e-05 6.585050343678331e-05 5.314608700425937e-08 0.1292971611451174 0.00010435209781226575 0.08459477283347161 0.0001216724195314163']
['59852.417642232984 0.2137429185997488 6.25585216619292e-05 0.024581954255339593 1.9865647481233956e-05 6.575360555623777e-05 5.3138083938814194e-08 0.12910690260157348 0.00010433638383001028 0.08463601599817533 0.0001216538105578666']
['59852.417844859956 0.2134310015778681 6.25375300951523e-05 0.024516792444733704 1.985493497484295e-05 6.55793059888639e-05 5.310942934478004e-08 0.12876466620133248 0.00010428012066619197 0.08466633537653562 0.00012159476237304648']
['59852.41804748692 0.2137059208948054 6.255778812269362e-05 0.024565102896016558 1.9861195496499667e-05 6.570853031028687e-05 5.312617544508256e-08 0.12901839756311217 0.00010431300155724616 0.08468752333169322 0.0001216333800758898']
['59852.418250113886 0.21360161927326038 6.25469679545221e-05 0.024602314491085207 1.98672412738972e-05 6.58080666009677e-05 5.314234713176577e-08 0.1292138366128425 0.00010434475458979622 0.08438778266041788 0.00012165504926105128']
['59852.41845274086 0.2136484079943704 6.255066540365107e-05 0.024580464434584733 1.9862935989373546e-05 6.574962047493598e-05 5.3130831042465656e-08 0.12909907791273495 0.00010432214280133165 0.08454933008163545 0.00012163755678696011']
['59852.41865536782 0.21376608264202396 6.255819996071498e-05 0.024582678336883185 1.9860562672740757e-05 6.575554238240357e-05 5.312448272190044e-08 0.12911070555085707 0.0001043096779030502 0.08465537709116688 0.00012163074153585877']
['59852.418857994795 0.21386791340977201 6.256706389241845e-05 0.024601866329330674 1.986675296260752e-05 6.580686782519395e-05 5.314104096108476e-08 0.1292114828221149 0.00010434218992966135 0.08465643058765712 0.00012166318294141205']
['59852.41906062176 0.2137347138412119 6.255295770873845e-05 0.024586066848423915 1.986307938824611e-05 6.57646062204108e-05 5.3131214616237125e-08 0.12912850235516762 0.00010432289594667074 0.08460621148604427 0.00012163938152099884']
['59852.419263248725 0.21354102325779067 6.254296487706034e-05 0.024553164649442388 1.986056976664051e-05 6.567659701694017e-05 5.312450169718131e-08 0.12895569668824786 0.00010430971516092707 0.08458532656954282 0.00012162293834868052']
['59852.4194658757 0.2138401735090037 6.25678896239853e-05 0.024589584574874736 1.986477001576031e-05 6.577401569189136e-05 5.3135736830116325e-08 0.12914697780921605 0.00010433177529285878 0.08469319569978764 0.00012165467581543582']
['59852.41966850266 0.2134942018367836 6.253801220486722e-05 0.0245253081086884 1.985498774753539e-05 6.5602084308395e-05 5.310957050502982e-08 0.12880939132714497 0.00010428039783369428 0.08468481050963864 0.000121595248027584']
['59852.41987112963 0.21366186873817872 6.254740336280729e-05 0.024574198426669358 1.986126338790312e-05 6.573285969958833e-05 5.312635704596413e-08 0.12906616820729705 0.00010431335812974328 0.08459570053088167 0.00012162834518209066']
['59852.4200737566 0.2136933238515042 6.256154391176933e-05 0.02475781523860673 1.9931490376630662e-05 6.622401135092628e-05 5.3314205321501056e-08 0.1300305422195732 0.00010468219735625349 0.083662781631931 0.00012195207755490616']
['59852.420276383564 0.21382353363695364 6.256477882331178e-05 0.024618642463060315 1.9869216643128474e-05 6.585174185223668e-05 5.314763099357399e-08 0.12929959276817393 0.00010435512942819578 0.0845239408687797 0.00012167310543906331']
['59852.420479010536 0.21357622858542907 6.254393022456186e-05 0.02454752661406174 1.9857257926712574e-05 6.56615159883661e-05 5.3115642946000464e-08 0.1289260851578873 0.00010429232104365849 0.08465014342754176 0.00012160851712198613']
['59852.4206816375 0.213810289279755 6.256383637849297e-05 0.024578006133818754 1.9862002301440465e-05 6.574304483260804e-05 5.312833354582944e-08 0.12908616666921616 0.00010431723897815371 0.08472412261053885 0.00012164012483724305']
['59852.420884264466 0.21356827135242662 6.254321896549683e-05 0.02457517147670961 1.9863826971805754e-05 6.573546248486198e-05 5.313321430731094e-08 0.12907127876423116 0.00010432682233091258 0.08449699258819546 0.00012163774124930091']
['59852.42108689144 0.21354657215835177 6.254132364130649e-05 0.02453754126341022 1.985715570470654e-05 6.563480644358131e-05 5.311536951511722e-08 0.1288736410893394 0.0001042917841633747 0.08467293106901236 0.00012160671612532992']
['59852.4212895184 0.21367669723685634 6.255391117161266e-05 0.02455853558972944 1.986092019111164e-05 6.569096360006177e-05 5.312543903813526e-08 0.12898390540824284 0.00010431155562558634 0.0846927918286135 0.00012163014609830821']
['59852.42149214537 0.21379084559314626 6.255982047248758e-05 0.02458215723974315 1.9862628005375947e-05 6.575414851373688e-05 5.3130007224388165e-08 0.12910796869613 0.00010432052523831906 0.08468287689701626 0.0001216408776832387']
['59852.42169477234 0.21357438221722994 6.254475549977563e-05 0.024552293637146082 1.9859653282126458e-05 6.567426716967208e-05 5.312205021750604e-08 0.12895112204383447 0.00010430490169184066 0.08462326017339547 0.0001216197309546081']
['59852.421897399305 0.21359716258837677 6.254799869526293e-05 0.024516166082194694 1.98537004717483e-05 6.55776305486244e-05 5.3106127205792216e-08 0.128761376482115 0.00010427363693145118 0.08483578610626177 0.00012159458663811771']
['59852.42210002627 0.21345991353049618 6.253869386181503e-05 0.02453356122878081 1.9858610840784406e-05 6.562416035643933e-05 5.3119261819313246e-08 0.1288527375461177 0.00010429942668479206 0.08460717598437847 0.00012161191815244974']
['59852.42230265324 0.2135493334287608 6.254569241584507e-05 0.02453012023195099 1.9856490387404147e-05 6.561495612694975e-05 5.311358987583318e-08 0.1288346650837762 0.0001042882898498117 0.08471466834498462 0.00012160596629925621']
['59852.42250528021 0.2134981989718842 6.253856553565489e-05 0.024562579992209392 1.9862456166175584e-05 6.570178186302879e-05 5.3129547576351947e-08 0.12900514701790647 0.00010431962272151043 0.08449305195397774 0.00012162917357285494']
['59852.42270790718 0.21370458357112068 6.255739502048113e-05 0.024562969070589358 1.9860665884724343e-05 6.570282259827957e-05 5.31247588008479e-08 0.12900719049679285 0.00010431021998279593 0.08469739307432783 0.00012163079241955056']
['59852.422910534144 0.21376461072257466 6.25562469183461e-05 0.02460173380461285 1.9864454274647316e-05 6.580651333840531e-05 5.3134892262740353e-08 0.12921078678893305 0.0001043301169886939 0.08455382393364161 0.00012164726605799097']
['59852.42311316111 0.2135057404187536 6.254070649081861e-05 0.024517853954073517 1.985474783339616e-05 6.558214539152895e-05 5.3108928765178125e-08 0.12877024135542817 0.00010427913778044203 0.08473549906332542 0.00012159555314485448']
['59852.42331578808 0.2134868813240426 6.253431419908356e-05 0.024583410632831433 1.9865836849092698e-05 6.575750118105851e-05 5.313859047378531e-08 0.12911455164302224 0.0001043373784091003 0.08437232968102035 0.00012164221711903107']
['59852.423518415046 0.21382035520007484 6.256173512220988e-05 0.02457980899762444 1.986203076001561e-05 6.574786726431218e-05 5.312840966890351e-08 0.129095635491725 0.00010431738844546013 0.08472471970834983 0.0001216391722825446']
['59852.42372104201 0.21368273759350478 6.255513821681198e-05 0.02456192188209582 1.9860164863546768e-05 6.570002150205949e-05 5.312341863283101e-08 0.12900169055722596 0.00010430758856904816 0.08468104703627882 0.00012162737500420815']
['59852.42392366898 0.2135339242197584 6.254327187363526e-05 0.024528311068912394 1.9855966469007203e-05 6.561011684559763e-05 5.311218846066258e-08 0.12882516317706091 0.00010428553817755884 0.08470876104269748 0.00012160236152987547']
['59852.42412629595 0.21381946705465502 6.256437399943164e-05 0.02454724940811784 1.9858739897054922e-05 6.566077449767322e-05 5.311960702844585e-08 0.12892462924431639 0.00010430010450133888 0.08489483781033863 0.00012162570736867667']
['59852.42432892292 0.21359269051460336 6.254797587849278e-05 0.024587983524148264 1.986334867325845e-05 6.576973308454248e-05 5.3131934919444094e-08 0.12913856892935013 0.00010432431025871035 0.08445412158525323 0.00012163803269311853']
['59852.424531549885 0.21361266392041964 6.254554563015642e-05 0.024572750572820823 1.986158795399032e-05 6.572898687443087e-05 5.312722521902527e-08 0.12905856393288248 0.00010431506278356262 0.08455409998753716 0.00012162885184738277']
['59852.42473417685 0.21365736340898006 6.255180188195731e-05 0.024573304405227973 1.9862076757716174e-05 6.573046830577949e-05 5.3128532706910505e-08 0.12906147271653348 0.00010431763003002194 0.08459589069244658 0.00012163427088514229']
['59852.42493680382 0.21347351180225527 6.253407134492145e-05 0.02453694688887529 1.985785008230107e-05 6.563321656719e-05 5.311722688699187e-08 0.12887051937434502 0.00010429543110452243 0.08460299242791025 0.00012160611427165128']
['59852.42513943079 0.2137396177811571 6.255315815442363e-05 0.02461527483854881 1.986807015398169e-05 6.584273388437982e-05 5.314456428071833e-08 0.12928190566464712 0.00010434910795158452 0.08445771211650999 0.00012166196581258983']
['59852.42534205775 0.2135859305688837 6.254497189742077e-05 0.024552160142825057 1.9856622690760768e-05 6.567391008931804e-05 5.311394377050871e-08 0.12895042091819886 0.0001042889847203822 0.08463550965068484 0.00012160619163372095']
['59852.425544684724 0.21358345757526342 6.254564433605892e-05 0.024556675486321858 1.9858986459432388e-05 6.568598805969238e-05 5.3120266551490454e-08 0.1289741359575728 0.00010430139947180877 0.08460932161769064 0.00012161718446498673']
['59852.42574731169 0.21355417809578378 6.253947829041017e-05 0.024592619291094634 1.9864983434987133e-05 6.578213317234982e-05 5.313630769944237e-08 0.12916291644482478 0.00010433289619215932 0.084391261650959 0.00012164102750585665']
['59852.42594993866 0.21359706382153035 6.254497879922576e-05 0.024531248638307093 1.985579888738172e-05 6.561797447063699e-05 5.311174020109843e-08 0.12884059158774736 0.00010428465802196281 0.08475647223378299 0.00012160248464465409']
['59852.426152565626 0.2135646153655413 6.254798627552692e-05 0.02451971604760954 1.9856912296107742e-05 6.558712625523914e-05 5.3114718428029993e-08 0.12878002125845345 0.0001042905057568684 0.08478459410708786 0.00012160904644863763']
['59852.42635519259 0.21361223811344715 6.255132965698905e-05 0.02454097170944903 1.9857925351978365e-05 6.564398245104494e-05 5.3117428223818864e-08 0.12889165813786255 0.0001042958264284578 0.0847205799755846 0.00012161532901839436']
['59852.42655781956 0.21393328985627827 6.257269342330042e-05 0.024599734904706443 1.9866568868229926e-05 6.580116653502968e-05 5.314054853200594e-08 0.12920028836505487 0.00010434122304742609 0.0847330014912234 0.0001216652488974525']
['59852.42676044653 0.21371078099020008 6.25515425712705e-05 0.024615745633034865 1.986654527986989e-05 6.584399319983589e-05 5.314048543613873e-08 0.12928437832476297 0.00010434109915898052 0.0844264026654371 0.00012165426606473638']
['59852.42696307349 0.2135542117215505 6.254569925526553e-05 0.024532362802768763 1.985671034544326e-05 6.562095471906543e-05 5.3114178235651626e-08 0.12884644329185277 0.00010428944509161377 0.08470776842969774 0.00012160696054439831']
['59852.427165700465 0.21366455273035923 6.255094110810397e-05 0.024575259355537685 1.986275224945907e-05 6.573569754956586e-05 5.313033956153067e-08 0.1290717403126979 0.00010432117778077245 0.08459281241766131 0.00012163687091945855']
['59852.42736832743 0.2136000832435626 6.254737691202745e-05 0.024571537925550033 1.9861249329771752e-05 6.572574319699604e-05 5.31263194422482e-08 0.12905219498713255 0.00010431328429501971 0.08454788825643006 0.00012162826825614525']
['59852.4275709544 0.2137360024703976 6.255469876532034e-05 0.024566872450278998 1.9859678640805753e-05 6.571326364319338e-05 5.3122118048752426e-08 0.12902769144054096 0.00010430503487818149 0.08470831102985663 0.00012162495894576339']
['59852.42777358137 0.21364342075231835 6.255303011297544e-05 0.024549515006052524 1.9858129626896546e-05 6.566683468440202e-05 5.311797463328069e-08 0.128936528393133 0.00010429689930092724 0.08470689235918535 0.00012161712371250427']
['59852.42797620833 0.21365849847573115 6.255052025942327e-05 0.02457911211243021 1.9861845141694893e-05 6.574600318492683e-05 5.3127913163470404e-08 0.12909197538041078 0.00010431641355932193 0.08456652309532037 0.0001216325685110859']
['59852.428178835304 0.21371217889872965 6.255863946333335e-05 0.024550829634060287 1.9860129067406237e-05 6.567035114735601e-05 5.3123322882701454e-08 0.1289434329519973 0.0001043074005641084 0.08476874594673234 0.00012162901456455483']
['59852.42838146227 0.21352381397105435 6.253888448012249e-05 0.0245584798673925 1.9860279846369778e-05 6.569081454988757e-05 5.312372619727896e-08 0.12898361274891018 0.00010430819247042952 0.08454020122214417 0.00012161953415659129']
['59852.42858408923 0.2140224549766743 6.258251914492284e-05 0.024668064498126877 1.9878595977224076e-05 6.598393951910231e-05 5.317271952103996e-08 0.12955916228007816 0.00010440439063668107 0.08446329269659614 0.00012172447776327214']
['59852.428786716206 0.21361337781729195 6.254795067851612e-05 0.024516855019285515 1.9852778804667487e-05 6.557947336784261e-05 5.3103661863409077e-08 0.12876499484918866 0.00010426879624300152 0.08484838296810329 0.0001215904108227563']
['59852.42898934317 0.21349129495788471 6.253637455202997e-05 0.024589616772186323 1.986454685615514e-05 6.577410181561059e-05 5.31351399065153e-08 0.12914714691274332 0.00010433060323610895 0.0843441480451414 0.00012163746509082704']
['59852.429191970135 0.2135751235746866 6.254654977725009e-05 0.02456615839016393 1.986177532510641e-05 6.57113536230761e-05 5.312772641296339e-08 0.12902394112481058 0.00010431604687555888 0.08455118244987603 0.00012163021222040936']
['59852.42939459711 0.21388517167517937 6.256899779536948e-05 0.024604509763323495 1.9865834043970685e-05 6.58139386753905e-05 5.31385829704402e-08 0.12922536640400997 0.00010433736367631663 0.0846598052711694 0.0001216600384022663']
['59852.42959722407 0.21345054098091615 6.253536950502648e-05 0.024534540315356342 1.9855942759729525e-05 6.562677928867817e-05 5.3112125041356036e-08 0.12885787980754382 0.00010428541365404164 0.08459266117337233 0.00012159819052981326']
['59852.429799851045 0.2137273579710844 6.256519463692017e-05 0.024727347541652553 1.9929352904769147e-05 6.614251413118034e-05 5.330848785574509e-08 0.12987052280279704 0.00010467097113849342 0.08385683516828735 0.00012194431425462618']
['59852.43000247801 0.2134324942582697 6.253121647775262e-05 0.02452805842558931 1.985468065370358e-05 6.560944105679581e-05 5.310874906803275e-08 0.1288238362688514 0.00010427878494592216 0.0846086579894183 0.00012159036978307716']
['59852.430205104974 0.21356364095700675 6.254253449674688e-05 0.02455747673831461 1.985914113030355e-05 6.568813130700849e-05 5.312068027642655e-08 0.12897834421383725 0.00010430221181882117 0.0845852967431695 0.00012161628185228741']
['59852.43040773195 0.21365824546094644 6.255132040665683e-05 0.024590645221308594 1.9866883052954943e-05 6.577685278639257e-05 5.3141388936241746e-08 0.12915254843124263 0.00010434287317728437 0.08450569702970381 0.00012165567338807958']
['59852.43061035891 0.21358773197829284 6.254762574965592e-05 0.024547689634805615 1.985725625945405e-05 6.56619520481512e-05 5.3115638486295665e-08 0.12892694135927318 0.0001042923122870486 0.08466079061901965 0.00012161041028258348']
['59852.43081298588 0.21376727402571338 6.255876894119843e-05 0.02457482370222036 1.9862667276187942e-05 6.573453223227299e-05 5.3130112268822584e-08 0.12906945221754393 0.00010432073149258373 0.08469782180816945 0.00012164051377146514']
['59852.43101561285 0.21367793905333765 6.255057537182586e-05 0.024569810727144505 1.986062416573643e-05 6.572112316062729e-05 5.312464720785383e-08 0.12904312356693542 0.00010431000087046445 0.08463481548640223 0.00012162709714920751']
['59852.43121823981 0.2134570219232652 6.253466980734524e-05 0.024532886531366004 1.9854601013340234e-05 6.562235562654591e-05 5.310853604017567e-08 0.1288491939672584 0.00010427836666670291 0.0846078279560068 0.00012159178706881906']
['59852.431420866786 0.21353906673483025 6.254440746613486e-05 0.024536258128428787 1.9857285494030675e-05 6.563137422047291e-05 5.3115716685075145e-08 0.12886690193502515 0.00010429246582999305 0.0846721647998051 0.00012160888674019747']
['59852.43162349375 0.21366482221385397 6.255254534062753e-05 0.02453655767883834 1.985941951053939e-05 6.56321754797735e-05 5.312142490820122e-08 0.12886847520398287 0.00010430367389989175 0.0847963470098711 0.00012162268422299445']
['59852.431826120715 0.213870627423862 6.25683487392356e-05 0.024615313864144103 1.9868950077286592e-05 6.584283827289072e-05 5.314691796380264e-08 0.12928211063100897 0.00010435372939751362 0.08458851679285304 0.00012167374040081164']
['59852.43202874769 0.21355967425853387 6.25416720271509e-05 0.024542713608878282 1.9856745503890514e-05 6.564864181078501e-05 5.311427228003267e-08 0.1289008067693187 0.00010428962974732414 0.08465886748921517 0.00012160504764517658']
['59852.43223137465 0.2134578620809866 6.253755998424084e-05 0.02454053351466326 1.9858850131771496e-05 6.564281033564675e-05 5.311990189231212e-08 0.12888935669465998 0.00010430068346518644 0.08456850538632663 0.00012161241293588224']
['59852.43243400162 0.21366570245561073 6.255629211709209e-05 0.024557523181893328 1.9859702410477758e-05 6.568825553768292e-05 5.3122181629606127e-08 0.12897858814019605 0.0001043051597188958 0.08468711431541467 0.00012162588551547453']
['59852.43263662859 0.21354740173834527 6.254390333421379e-05 0.024521014893588884 1.985465419158586e-05 6.559060050327155e-05 5.310867828522873e-08 0.12878684292851306 0.00010427864596421146 0.08476055880983221 0.00012159677564972203']
['59852.432839255554 0.21368005445724214 6.255544326780079e-05 0.024575811644374806 1.9862255950213566e-05 6.57371748520607e-05 5.3129012024082354e-08 0.1290746409893635 0.00010431857116708807 0.08460541346787864 0.0001216369506884066']
['59852.43304188253 0.2136318483035199 6.254763404815106e-05 0.024539500915451172 1.9858135536775422e-05 6.56400482639016e-05 5.3117990441456085e-08 0.12888393337947046 0.00010429693034020706 0.08474791492404943 0.00012161437498672363']
['59852.43324450949 0.21354016824472422 6.25417148172854e-05 0.024534220454858886 1.9857271313713375e-05 6.562592370247194e-05 5.311567875452736e-08 0.12885619986795632 0.00010429239135353664 0.08468396837676789 0.00012160743803947972']
['59852.43344713646 0.21372552780408438 6.255610840290028e-05 0.024574873399953418 1.9860080640806078e-05 6.573466516739696e-05 5.3123193347696533e-08 0.12906971323504948 0.000104307146222721 0.0846558145690349 0.00012162749463687686']
['59852.43364976343 0.21355948315788964 6.25459993363118e-05 0.024523043920993068 1.9853699723392093e-05 6.559602789387734e-05 5.3106125204034404e-08 0.12879749958504763 0.0001042736330010089 0.08476198357284201 0.00012159355481359615']
['59852.43385239039 0.21355613450919164 6.253956242654439e-05 0.024565701947013928 1.9860533423150753e-05 6.571013269562125e-05 5.3124404482962076e-08 0.12902154383935888 0.00010430952428125396 0.08453459066983277 0.00012162102500918643']
['59852.43405501736 0.21358510432396016 6.254867897638294e-05 0.02454679785071755 1.985933452241459e-05 6.565956663897834e-05 5.3121197575761464e-08 0.1289222576193149 0.00010430322753369008 0.08466284670464527 0.0001216203129236039']
['59852.43425764433 0.21337637797407488 6.25254609776764e-05 0.02452601726212135 1.9856577664793005e-05 6.560398120376078e-05 5.3113823331763544e-08 0.1288131158724861 0.00010428874823945907 0.0845632621015888 0.00012159595503068435']
['59852.434460271295 0.2138004827932451 6.255892198764208e-05 0.02463423397141281 1.986980664921655e-05 6.589344715685111e-05 5.3149209184924774e-08 0.12938148094229418 0.00010435822819966677 0.08441900185095091 0.00012167275172868251']
['59852.43466289826 0.21380569875468022 6.255870132902905e-05 0.024606440557483324 1.9866916400949735e-05 6.581910330454393e-05 5.31414781378924e-08 0.1292355071296393 0.00010434304832431585 0.08457019162504092 0.00012165961879598824']
['59852.43486552523 0.2136521768478514 6.254858325901885e-05 0.024576128759178414 1.986101313355357e-05 6.573802309388459e-05 5.31256876473631e-08 0.12907630650829 0.00010431204376866372 0.0845758703395614 0.00012162782470679162']
['59852.4350681522 0.2136798561507176 6.255240626582417e-05 0.02456376410774197 1.986014923883729e-05 6.570494922168764e-05 5.312337683871761e-08 0.1290113661120902 0.00010430750650649838 0.08466849003862742 0.00012162589955781589']
['59852.43527077917 0.21385932557444376 6.256920116072076e-05 0.024593296232838156 1.9863537017600015e-05 6.578394390553749e-05 5.3132438716636754e-08 0.12916647181112476 0.00010432529946218495 0.084692853763319 0.00012164979671896419']
['59852.435473406134 0.21371252516667175 6.25553902913585e-05 0.02459034873815471 1.9863632689945976e-05 6.577605973161131e-05 5.3132694628011157e-08 0.12915099127182095 0.00010432580194299358 0.0845615338948508 0.00012164312477716492']
['59852.4356760331 0.2133799718392236 6.253022882093292e-05 0.024503231736744645 1.985073675548736e-05 6.55430328172961e-05 5.3098199641206486e-08 0.12869344399550758 0.00010425807119478656 0.08468652784371603 0.00012157209764438308']
['59852.43587866007 0.21356412519521079 6.254196062863517e-05 0.024545177183674195 1.9858478970198886e-05 6.565523156047318e-05 5.311890908224545e-08 0.12891374571257455 0.00010429873408717903 0.08465037948263623 0.00012161300412152409']
['59852.436081287036 0.21348120531577158 6.253712496729117e-05 0.02453712498544037 1.9857619811799727e-05 6.56336929528821e-05 5.311661094264671e-08 0.1288714547554641 0.00010429422170062882 0.08460975056030748 0.00012160664734838514']
['59852.436283914 0.21392283328530795 6.257387922268394e-05 0.024630091187472298 1.9872379588006886e-05 6.588236573597222e-05 5.3156091469408046e-08 0.12935972262327888 0.00010437174153364962 0.08456311066202907 0.00012169203257297496']
['59852.43648654097 0.21378148879178446 6.256097261820422e-05 0.024591786938344178 1.9864860476830707e-05 6.577990673445685e-05 5.313597880199046e-08 0.12915854484424463 0.00010433225040352263 0.08462294394753983 0.00012165152596329832']
['59852.43668916794 0.21355341658823052 6.254565265308154e-05 0.024521722372836254 1.9855394825567333e-05 6.559249292040354e-05 5.311065938706357e-08 0.12879055868086267 0.00010428253584856794 0.08476285790736784 0.00012160101129845831']
['59852.43689179491 0.21371677550585932 6.25624882557333e-05 0.024733481322689918 1.9929181652059295e-05 6.615892121642304e-05 5.3308029776496506e-08 0.12990273803933783 0.00010467007170199211 0.0838140374665215 0.00012194215369120285']
['59852.437094421875 0.21363484767982996 6.25515148754969e-05 0.02460669169366849 1.9867173109804396e-05 6.581977506194324e-05 5.314216480147482e-08 0.1292368261222085 0.00010434439658510712 0.08439802155762147 0.00012165707999097144']
['59852.43729704884 0.21340053836882156 6.252729629691496e-05 0.02454944988431213 1.9857420235755736e-05 6.566666049201738e-05 5.311607710207656e-08 0.12893618636718557 0.00010429317350712047 0.08446435200163599 0.0001216006941690241']
['59852.43749967581 0.2135808356843888 6.254581261569424e-05 0.02454052868427562 1.9856968415428226e-05 6.56427974149733e-05 5.311486854008475e-08 0.128889331324977 0.00010429080050119867 0.08469150435941178 0.00012160818124179951']
['59852.43770230278 0.21339068733200806 6.252937057804274e-05 0.024542547699625623 1.9857787141919577e-05 6.564819802460577e-05 5.311705852946523e-08 0.1288999353971934 0.0001042951005352919 0.08449075193481465 0.00012160341352344038']
['59852.43790492974 0.21385325253158483 6.25658286522934e-05 0.024600590679712254 1.9866126383320326e-05 6.580345562448093e-05 5.313936494107138e-08 0.12920478298168203 0.00010433889907206054 0.0846484695499028 0.00012165972535937179']
['59852.438107556714 0.2136915609079004 6.255530087244302e-05 0.02456211863557365 1.9862338685963315e-05 6.570054779262364e-05 5.312923333170492e-08 0.1290027239263322 0.00010431900570358885 0.0846888369815682 0.0001216372501260501']
['59852.43831018368 0.21348820638551183 6.254233492896794e-05 0.024546995878819436 1.9858590477578452e-05 6.566009633899995e-05 5.3119207350323586e-08 0.1289232976828752 0.00010429931973518096 0.08456490870263664 0.0001216136988812885']
['59852.43851281065 0.21371992317665475 6.255120749027307e-05 0.024587095223566897 1.9864139625022066e-05 6.576735699330759e-05 5.313405061495547e-08 0.12913390348512027 0.00010432846441713272 0.08458601969153448 0.00012164325729824947']
['59852.438715437616 0.21364227842709932 6.254875800119635e-05 0.024558103648649583 1.985970012744736e-05 6.568980821253264e-05 5.312217552278978e-08 0.1289816368101344 0.00010430514772818994 0.08466064161696493 0.00012162200035393166']
['59852.43891806458 0.2136623902713592 6.255170750602145e-05 0.02457532860905739 1.986393034124676e-05 6.57358827939354e-05 5.3133490807436997e-08 0.12907210403916697 0.00010432736523764055 0.08459028623219222 0.00012164257169818021']
['59852.43912069155 0.21382552495298104 6.256202646286856e-05 0.024623461098157426 1.986905104994982e-05 6.586463108912175e-05 5.314718805285255e-08 0.12932490072561673 0.00010435425971612301 0.08450062422736432 0.00012167094425556464']
['59852.43932331852 0.21362106391793628 6.255224831714912e-05 0.024565657657130077 1.9859893471621654e-05 6.571001422580708e-05 5.312269269389997e-08 0.1290213112244227 0.00010430616319129021 0.08459975269351358 0.0001216246662861541']
['59852.43952594548 0.21347883934253087 6.253561051537625e-05 0.024539138906021583 1.9857177859240143e-05 6.563907993465513e-05 5.311542877568083e-08 0.1288820320694411 0.00010429190052121925 0.08459680727308977 0.0001216038778035418']
['59852.439728572455 0.21358217374413996 6.254205210878026e-05 0.024562194268929693 1.9859556130300618e-05 6.57007501022451e-05 5.312179034871086e-08 0.12900312116034504 0.00010430439144065452 0.08457905258379492 0.00012161790310551596']
['59852.43993119942 0.21355443542260252 6.254342817009617e-05 0.024570405940558808 1.986310304451275e-05 6.572271528091436e-05 5.313127789374589e-08 0.1290462496878089 0.00010432302019176866 0.08450818573479363 0.00012163458779968858']
['59852.44013382639 0.21353802386497547 6.254071679947669e-05 0.024544256543838405 1.9859054842082763e-05 6.565276896584002e-05 5.3120449466395144e-08 0.12890891041931934 0.00010430175862438428 0.08462911344565613 0.00012161495841355892']
['59852.44033645336 0.21364414038351454 6.255070088472461e-05 0.02457885479090964 1.9863236084794244e-05 6.57453148825409e-05 5.313163375960185e-08 0.12909062390183637 0.00010432371893274288 0.08455351648167816 0.00012163892680029787']
['59852.44053908032 0.21351528148634102 6.253795828051306e-05 0.02453672469033493 1.985561892741257e-05 6.563262221431528e-05 5.31112588310371e-08 0.12886935236520447 0.00010428371285405762 0.08464592912113655 0.00012159806327619999']
['59852.440741707294 0.21352428342919602 6.25413477540281e-05 0.024502336006293517 1.9851582451081642e-05 6.554063685210325e-05 5.310046176951205e-08 0.12868873952885254 0.00010426251287332795 0.08483554390034348 0.00012158162595372359']
['59852.44094433426 0.2135625966471718 6.254189277729734e-05 0.02457924847638152 1.985913223395543e-05 6.574636794117741e-05 5.312065647982523e-08 0.12909269157763403 0.00010430216509430374 0.08446990506953778 0.00012161591176949813']
['59852.441146961224 0.21377113545026494 6.256402812167673e-05 0.024575481638095066 1.9862097600565197e-05 6.573629212717545e-05 5.312858845888445e-08 0.12907290776310434 0.0001043177394987668 0.0846982276871606 0.00012164065269860454']
['59852.441349588196 0.21365481702134514 6.254819286323584e-05 0.024581284628056317 1.9863914196136462e-05 6.575181438830227e-05 5.313344762131749e-08 0.1291033856515563 0.00010432728044189318 0.08455143136978885 0.00012164069169014936']
['59852.44155221516 0.2137214243513781 6.255368404514367e-05 0.024613717060732523 1.986777790664038e-05 6.583856702656972e-05 5.314378255619774e-08 0.12927372405846912 0.00010434757303907764 0.08444770029290896 0.00012166091971855755']
['59852.441754842126 0.21349120435584845 6.253755612642817e-05 0.024551448639183675 1.9858870936096187e-05 6.567200690744318e-05 5.3119957541238375e-08 0.12894668402932602 0.00010430079273159764 0.08454452032652243 0.00012161250466422375']
['59852.4419574691 0.2135112181508727 6.253946155220537e-05 0.024532082737047694 1.9855709129432955e-05 6.562020557883183e-05 5.311150010998536e-08 0.12884497235844378 0.00010428418660416469 0.08466624579242893 0.0001215992427070663']
['59852.44216009606 0.2135385498308408 6.254248263395103e-05 0.024580160452779956 1.9863676768317913e-05 6.574880736221598e-05 5.313281253205783e-08 0.12909748136964264 0.00010432603344704787 0.08444106846119817 0.00012163668603185726']
['59852.442362723035 0.2135126317620678 6.254149205721718e-05 0.024543247407642355 1.9859607554720964e-05 6.56500696546828e-05 5.3121927902504034e-08 0.12890361033425607 0.00010430466152689583 0.08460902142781174 0.00012161784673715969']
['59852.44256535 0.21351693857860052 6.253627830944014e-05 0.024533751776878106 1.9854944927690784e-05 6.562467004839868e-05 5.3109455967383913e-08 0.12885373832393965 0.00010428017293955245 0.08466320025466087 0.0001215941634006284']
['59852.442767976965 0.2135623106272742 6.254144242450134e-05 0.02453645804198713 1.9856195355074576e-05 6.563190896385108e-05 5.3112800701822704e-08 0.1288679519011929 0.00010428674031026564 0.0846943587260813 0.00012160245155866719']
['59852.44297060394 0.2136287661385028 6.254904579530588e-05 0.024562201214056854 1.986259333103824e-05 6.570076867957817e-05 5.312991447493867e-08 0.12900315763685322 0.00010432034312520084 0.08462560850164957 0.00012163518043585462']
['59852.4431732309 0.21350166725140618 6.253603120032008e-05 0.024556549544756834 1.986048724946165e-05 6.568565118200139e-05 5.3124280974208105e-08 0.1289734744997733 0.00010430928177238263 0.08452819275163287 0.00012161900123811954']
['59852.44337585787 0.2136947770566749 6.255698236203364e-05 0.02454906949707973 1.9859526719617037e-05 6.566564300448249e-05 5.312171167886764e-08 0.12893418853508262 0.00010430423697277855 0.08476058852159227 0.00012162544919841954']
['59852.44357848484 0.21358083828705957 6.254370559405568e-05 0.024540889263430947 1.985626457574122e-05 6.564376191841778e-05 5.311298585831448e-08 0.1288912251230617 0.0001042871038641871 0.08468961316399787 0.00012160392732891343']
['59852.443781111804 0.21389854564195032 6.256951213530646e-05 0.02459197623467465 1.986433028675309e-05 6.578041307809893e-05 5.313456061087062e-08 0.12915953904766098 0.00010432946579177045 0.08473900659428935 0.00012165352967031603']
['59852.443983738776 0.21378499673322207 6.256895806923991e-05 0.024760046859095025 1.9936355260042426e-05 6.622998065230135e-05 5.3327218266753964e-08 0.13004226291541504 0.00010470774821450855 0.08374273381780703 0.00012197781376145098']
['59852.44418636574 0.21388080917576818 6.256926712503763e-05 0.024590318161986972 1.9865976128796307e-05 6.577597794424601e-05 5.313896302930299e-08 0.12915083068270472 0.00010433810992014868 0.08472997849306346 0.00012166081690615654']
['59852.444388992706 0.2136114961067519 6.25526331654469e-05 0.02455470799258856 1.985949079936691e-05 6.5680725263841e-05 5.3121615596760675e-08 0.12896380248208278 0.0001043040483160027 0.08464769362466912 0.00012162305049224013']
['59852.44459161968 0.21379088326963885 6.256867961748406e-05 0.024739276520347093 1.993006734583256e-05 6.617442263412612e-05 5.33103988948508e-08 0.12993317500182297 0.00010467472345500294 0.08385770826781588 0.00012194932307912459']
['59852.44479424664 0.21373052414385585 6.255549014225912e-05 0.024581454583065602 1.9863229203267327e-05 6.575226899636666e-05 5.313161535239135e-08 0.1291042782724034 0.00010432368279026959 0.08462624587145245 0.00012164135866498315']
['59852.44499687361 0.21359953993024985 6.254576689938127e-05 0.024551826556370605 1.985794083206287e-05 6.567301778792015e-05 5.3117469631078846e-08 0.1289486688885011 0.00010429590773142265 0.08465087104174876 0.00012161253770295711']
['59852.44519950058 0.2139358246486991 6.257082435075047e-05 0.024601835120250954 1.9865390023835033e-05 6.580678434486946e-05 5.313739527297093e-08 0.12921131890888107 0.00010433503163778905 0.08472450573981802 0.00012165897783061844']
['59852.445402127545 0.21348412643092013 6.25412897298852e-05 0.024508445728022316 1.9853891738978155e-05 6.555697958175121e-05 5.310663882133982e-08 0.12872082840347854 0.00010427464148622982 0.08476329802744159 0.00012159199717974536']
['59852.44560475452 0.2135899174809115 6.254730847905336e-05 0.024535042842545624 1.9856001422931062e-05 6.562812348508509e-05 5.311228195796952e-08 0.12886051913101693 0.00010428572175909172 0.08472939834989457 0.0001216045951466825']
['59852.44580738148 0.2135106260754846 6.253974061934369e-05 0.024529831786354192 1.9856775350756697e-05 6.561418457161289e-05 5.311435211660895e-08 0.12883315013841487 0.0001042897865060751 0.08467747593706973 0.0001216041887692094']
['59852.44601000845 0.2136132869418454 6.254453639958685e-05 0.02456928870650832 1.9861792281920878e-05 6.571972682172569e-05 5.312777177028846e-08 0.12904038186191344 0.0001043161359344584 0.08457290507993195 0.00012162925326472923']
['59852.44621263542 0.21353678470951487 6.254088402662399e-05 0.024554372196946984 1.9859230347058272e-05 6.567982705314814e-05 5.312091891991429e-08 0.12896203884951146 0.00010430268039421362 0.08457474586000341 0.00012161583495683901']
['59852.446415262384 0.2138383571427975 6.256444886223124e-05 0.024604986807391198 1.9865186316325453e-05 6.581521470768373e-05 5.3136850381255055e-08 0.12922787188755883 0.0001043339617454068 0.08461048525523868 0.00012165478138949887']
In [20]:
fig, axs = plt.subplots(2, 2,figsize=(15,10))

#JWST pipeline: net aperture
dat = ascii.read('/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/25512_radii/WASP80b_WLP4_nrca3_level3_asn_phot.ecsv') #call the data 
normalized_net_aperture_sum_pipeline = dat['net_aperture_sum'].value/dat['net_aperture_sum'][0].value #normalized net aperture sum
std_net_aperture_sum_pipeline = np.std(normalized_net_aperture_sum_pipeline[0:20]) #calculated standard deviation
relative_error_net_aperture_sum_pipeline = (dat['net_aperture_sum_err'].value/dat['net_aperture_sum'].value)

#MAD: 
deviation = normalized_net_aperture_sum_pipeline[0:seg01_len] - np.median(normalized_net_aperture_sum_pipeline[0:seg01_len])
mad = np.median(np.abs(deviation))*1.48

print(style.BOLD+"Pipeline Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad*10**6))
print(style.BOLD+"Pipeline Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_net_aperture_sum_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_net_aperture_sum_pipeline)*10**6))

axs[0,0].errorbar(dat['MJD'],normalized_net_aperture_sum_pipeline,yerr=relative_error_net_aperture_sum_pipeline,color='navy',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[0,0].set_title("Net Aperture Sum")
axs[0,0].set_xlabel("Time (MJD)")
axs[0,0].set_ylabel("Normalized Flux")
axs[0,0].legend()

#JWST pipeline: aperature background
normalized_aperture__bkg_pipeline = dat['aperture_bkg'].value/dat['aperture_bkg'][0].value #normalized aperture bkg
std_aperture_bkg_pipeline = np.std(normalized_aperture__bkg_pipeline[0:20]) #calculated standard deviation
relative_error_aperture_bkg_pipeline = (dat['aperture_bkg_err'].value/dat['aperture_bkg'].value)

print(style.BOLD+"Pipeline Calculated Aperture Background std (ppm):"+style.END + " " +str(std_aperture_bkg_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Aperture Background (ppm):"+style.END + " " +str(np.median(relative_error_aperture_bkg_pipeline)*10**6))

axs[0,1].errorbar(dat['MJD'],normalized_aperture__bkg_pipeline,yerr=relative_error_aperture_bkg_pipeline,color='darkred',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[0,1].set_title("Aperture Background")
axs[0,1].set_xlabel("Time (MJD)")
axs[0,1].set_ylabel("Normalized Flux")
axs[0,1].legend()


#JWST pipeline: annulus mean
normalized_annulus_mean_pipeline = dat['annulus_mean'].value/dat['annulus_mean'][0].value #normalized annulus mean
std_annulus_mean_pipeline = np.std(normalized_annulus_mean_pipeline[0:20]) #calculated standard deviation
relative_error_annulus_mean_pipeline = (dat['annulus_mean_err'].value/dat['annulus_mean'].value)

print(style.BOLD+"Pipeline Calculated Annulus Mean std (ppm):"+style.END + " " +str(std_annulus_mean_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Annulus Mean (ppm):"+style.END + " " +str(np.median(relative_error_annulus_mean_pipeline)*10**6))

axs[1,0].errorbar(dat['MJD'],normalized_annulus_mean_pipeline,yerr=relative_error_annulus_mean_pipeline,color ='darkgreen',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[1,0].set_title("Annulus Mean")
axs[1,0].set_xlabel("Time (MJD)")
axs[1,0].set_ylabel("Normalized Flux")
axs[1,0].legend()

#JWST pipeline: annulus sum
normalized_annulus_sum_pipeline = dat['annulus_sum'].value/dat['annulus_sum'][0].value #normalized annulus sum
std_annulus_sum_pipeline = np.std(normalized_annulus_sum_pipeline[0:20]) #calculated standard deviation
relative_error_annulus_sum_pipeline = (dat['annulus_sum_err'].value/dat['annulus_sum'].value)

print(style.BOLD+"Pipeline Calculated Annulus Sum std (ppm):"+style.END + " " +str(std_annulus_sum_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Annulus Sum (ppm):"+style.END + " " +str(np.median(relative_error_annulus_sum_pipeline)*10**6))

axs[1,1].errorbar(dat['MJD'],normalized_annulus_sum_pipeline,yerr=relative_error_annulus_sum_pipeline,color = 'indigo',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[1,1].set_title("Annulus Sum")
axs[1,1].set_xlabel("Time (MJD)")
axs[1,1].set_ylabel("Normalized Flux")
axs[1,1].legend()
Pipeline Calculated Net Aperture Sum MAD (ppm): 1146.6572308133527
Pipeline Calculated Net Aperture Sum std (ppm): 1207.1178535394927
Median Relative Errors Net Aperture Sum (ppm): 1438.0601000711963
Pipeline Calculated Aperture Background std (ppm): 1216.6621354834804
Median Relative Errors Aperture Background (ppm): 808.9208058367085
Pipeline Calculated Annulus Mean std (ppm): 1216.6621354835145
Median Relative Errors Annulus Mean (ppm): 808.9208058367086
Pipeline Calculated Annulus Sum std (ppm): 1216.6621354834747
Median Relative Errors Annulus Sum (ppm): 808.9208058367086
Out[20]:
<matplotlib.legend.Legend at 0x7f81ac98d670>

$\textbf{External method: tshirt $\rightarrow$ (bkgGeometry = Circular Annulus) }$¶

In [21]:
phot = phot_pipeline.phot(paramFile='/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/WASP80b_WLP4_NRCA3_phot_pipeline.yaml') #create a photometric object

alteredParam = deepcopy(phot.param)
alteredParam['srcGeometry']='Circular'
alteredParam['bkgGeometry'] = 'CircularAnnulus'
alteredParam['backEnd'] = 12 #Changing the outer radius
alteredParam['apRadius'] = 25 #Changing the source radius
alteredParam['backStart'] = 5 #Changing the inner radius
alteredParam['bkgMethod'] = 'mean' #Due to the odd aperture configuration, we need to do mean background subtraction

alteredParam['doCentering'] = True
alteredParam['srcNameShort'] = 'WASP80b_phot3' #provide a new name for centroid realignment

#Assignimg a object new phot3
phot3 = phot_pipeline.phot(directParam=alteredParam) #create new photometric object

phot3.showStarChoices(showAps=True,showPlot=True,apColor='red',backColor='pink', figSize=(30,20),xLim=[900,1200], vmax=7000) #Plot the source and background subtraction area
In [22]:
phot3.get_allimg_cen(recenter=True,useMultiprocessing=True) #recenter the centroids each time. 
phot3.do_phot(useMultiprocessing=True) #extract the photometric data
  0%|                                                  | 0/1227 [00:00<?, ?it/s]2022-02-22 21:26:55,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  0%|                                          | 1/1227 [00:00<09:51,  2.07it/s]2022-02-22 21:26:55,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:55,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 11/1227 [00:00<01:13, 16.44it/s]2022-02-22 21:26:56,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▌                                        | 18/1227 [00:00<00:47, 25.53it/s]2022-02-22 21:26:56,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▋                                        | 22/1227 [00:01<00:59, 20.20it/s]2022-02-22 21:26:56,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█                                        | 31/1227 [00:01<00:52, 22.72it/s]2022-02-22 21:26:56,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:56,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  3%|█▎                                       | 40/1227 [00:01<00:37, 31.95it/s]2022-02-22 21:26:56,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▌                                       | 45/1227 [00:01<00:45, 25.97it/s]2022-02-22 21:26:57,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                       | 51/1227 [00:02<00:50, 23.45it/s]2022-02-22 21:26:57,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|█▉                                       | 58/1227 [00:02<00:39, 29.93it/s]2022-02-22 21:26:57,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:57,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  5%|██                                       | 63/1227 [00:02<00:51, 22.58it/s]2022-02-22 21:26:58,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▎                                      | 71/1227 [00:03<00:48, 23.82it/s]2022-02-22 21:26:58,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▋                                      | 80/1227 [00:03<00:36, 31.36it/s]2022-02-22 21:26:58,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|██▊                                      | 85/1227 [00:03<00:42, 26.92it/s]2022-02-22 21:26:58,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:58,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  7%|███                                      | 91/1227 [00:03<00:47, 23.89it/s]2022-02-22 21:26:59,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▏                                     | 96/1227 [00:03<00:41, 27.38it/s]2022-02-22 21:26:59,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 101/1227 [00:04<00:46, 24.45it/s]2022-02-22 21:26:59,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 106/1227 [00:04<00:40, 27.86it/s]2022-02-22 21:26:59,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▌                                    | 111/1227 [00:04<00:44, 24.84it/s]2022-02-22 21:26:59,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▊                                    | 116/1227 [00:04<00:39, 28.26it/s]2022-02-22 21:26:59,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:26:59,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|███▉                                    | 121/1227 [00:04<00:43, 25.21it/s]2022-02-22 21:27:00,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 10%|████                                    | 126/1227 [00:05<00:38, 28.50it/s]2022-02-22 21:27:00,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▎                                   | 131/1227 [00:05<00:43, 25.09it/s]2022-02-22 21:27:00,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▍                                   | 137/1227 [00:05<00:35, 30.36it/s]2022-02-22 21:27:00,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▌                                   | 141/1227 [00:05<00:44, 24.30it/s]2022-02-22 21:27:00,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,961 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:00,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▋                                   | 145/1227 [00:05<00:40, 27.02it/s]2022-02-22 21:27:01,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 12%|████▉                                   | 151/1227 [00:06<00:43, 24.71it/s]2022-02-22 21:27:01,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████                                   | 156/1227 [00:06<00:37, 28.40it/s]2022-02-22 21:27:01,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 13%|█████▏                                  | 161/1227 [00:06<00:43, 24.69it/s]2022-02-22 21:27:01,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▍                                  | 168/1227 [00:06<00:32, 32.35it/s]2022-02-22 21:27:01,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:01,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 14%|█████▋                                  | 173/1227 [00:06<00:41, 25.30it/s]2022-02-22 21:27:02,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|█████▉                                  | 181/1227 [00:07<00:41, 25.27it/s]2022-02-22 21:27:02,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|██████                                  | 187/1227 [00:07<00:34, 30.39it/s]2022-02-22 21:27:02,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▏                                 | 191/1227 [00:07<00:41, 24.80it/s]2022-02-22 21:27:02,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▍                                 | 197/1227 [00:07<00:34, 30.19it/s]2022-02-22 21:27:02,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:02,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▌                                 | 201/1227 [00:07<00:41, 24.56it/s]2022-02-22 21:27:03,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▋                                 | 207/1227 [00:08<00:33, 30.38it/s]2022-02-22 21:27:03,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 17%|██████▉                                 | 211/1227 [00:08<00:42, 23.91it/s]2022-02-22 21:27:03,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████                                 | 217/1227 [00:08<00:34, 29.67it/s]2022-02-22 21:27:03,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 18%|███████▏                                | 221/1227 [00:08<00:43, 23.29it/s]2022-02-22 21:27:03,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:03,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▍                                | 230/1227 [00:08<00:32, 30.33it/s]2022-02-22 21:27:04,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▋                                | 234/1227 [00:09<00:40, 24.79it/s]2022-02-22 21:27:04,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                                | 240/1227 [00:09<00:34, 28.83it/s]2022-02-22 21:27:04,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                                | 244/1227 [00:09<00:39, 24.82it/s]2022-02-22 21:27:04,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|████████▏                               | 250/1227 [00:09<00:34, 28.73it/s]2022-02-22 21:27:04,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:04,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▎                               | 254/1227 [00:09<00:40, 24.27it/s]2022-02-22 21:27:05,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▍                               | 259/1227 [00:09<00:33, 28.53it/s]2022-02-22 21:27:05,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▌                               | 263/1227 [00:10<00:46, 20.83it/s]2022-02-22 21:27:05,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▋                               | 268/1227 [00:10<00:39, 24.57it/s]2022-02-22 21:27:05,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:05,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▊                               | 272/1227 [00:10<00:48, 19.78it/s]2022-02-22 21:27:06,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████                               | 279/1227 [00:10<00:37, 25.16it/s]2022-02-22 21:27:06,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████▏                              | 283/1227 [00:11<00:46, 20.52it/s]2022-02-22 21:27:06,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████▎                              | 286/1227 [00:11<00:44, 21.36it/s]2022-02-22 21:27:06,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                              | 290/1227 [00:11<00:51, 18.26it/s]2022-02-22 21:27:06,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:06,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▌                              | 294/1227 [00:11<00:44, 21.11it/s]2022-02-22 21:27:07,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▊                              | 300/1227 [00:12<00:45, 20.42it/s]2022-02-22 21:27:07,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|█████████▉                              | 304/1227 [00:12<00:40, 22.65it/s]2022-02-22 21:27:07,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 25%|██████████                              | 310/1227 [00:12<00:44, 20.40it/s]2022-02-22 21:27:07,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▏                             | 314/1227 [00:12<00:39, 22.93it/s]2022-02-22 21:27:07,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:07,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▍                             | 320/1227 [00:12<00:41, 21.97it/s]2022-02-22 21:27:08,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 26%|██████████▌                             | 324/1227 [00:13<00:37, 24.25it/s]2022-02-22 21:27:08,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▋                             | 327/1227 [00:13<00:38, 23.40it/s]2022-02-22 21:27:08,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▊                             | 330/1227 [00:13<00:41, 21.43it/s]2022-02-22 21:27:08,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▊                             | 333/1227 [00:13<00:42, 21.15it/s]2022-02-22 21:27:08,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                             | 338/1227 [00:13<00:36, 24.20it/s]2022-02-22 21:27:08,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:08,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                             | 341/1227 [00:13<00:41, 21.58it/s]2022-02-22 21:27:09,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████▏                            | 344/1227 [00:14<00:39, 22.27it/s]2022-02-22 21:27:09,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,550 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████▍                            | 349/1227 [00:14<00:46, 18.77it/s]2022-02-22 21:27:09,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▌                            | 353/1227 [00:14<00:43, 20.10it/s]2022-02-22 21:27:09,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 29%|███████████▋                            | 359/1227 [00:14<00:36, 23.79it/s]2022-02-22 21:27:09,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:09,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▊                            | 362/1227 [00:14<00:39, 21.91it/s]2022-02-22 21:27:10,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|███████████▉                            | 367/1227 [00:15<00:38, 22.12it/s]2022-02-22 21:27:10,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|████████████                            | 370/1227 [00:15<00:42, 20.33it/s]2022-02-22 21:27:10,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 30%|████████████▏                           | 373/1227 [00:15<00:41, 20.61it/s]2022-02-22 21:27:10,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▎                           | 377/1227 [00:15<00:36, 23.02it/s]2022-02-22 21:27:10,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:10,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▍                           | 380/1227 [00:15<00:43, 19.56it/s]2022-02-22 21:27:11,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▍                           | 383/1227 [00:15<00:44, 18.82it/s]2022-02-22 21:27:11,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▌                           | 387/1227 [00:16<00:38, 21.63it/s]2022-02-22 21:27:11,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▋                           | 390/1227 [00:16<00:41, 20.15it/s]2022-02-22 21:27:11,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▊                           | 393/1227 [00:16<00:45, 18.16it/s]2022-02-22 21:27:11,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|█████████████                           | 399/1227 [00:16<00:33, 24.59it/s]2022-02-22 21:27:11,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:11,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|█████████████                           | 402/1227 [00:16<00:39, 20.91it/s]2022-02-22 21:27:12,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|█████████████▏                          | 406/1227 [00:16<00:37, 22.11it/s]2022-02-22 21:27:12,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|█████████████▎                          | 410/1227 [00:17<00:32, 25.52it/s]2022-02-22 21:27:12,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▍                          | 413/1227 [00:17<00:38, 21.42it/s]2022-02-22 21:27:12,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▌                          | 416/1227 [00:17<00:39, 20.54it/s]2022-02-22 21:27:12,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:12,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▋                          | 421/1227 [00:17<00:43, 18.36it/s]2022-02-22 21:27:12,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▊                          | 425/1227 [00:17<00:37, 21.66it/s]2022-02-22 21:27:13,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▉                          | 429/1227 [00:17<00:33, 23.73it/s]2022-02-22 21:27:13,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|██████████████                          | 432/1227 [00:18<00:33, 23.57it/s]2022-02-22 21:27:13,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|██████████████▏                         | 435/1227 [00:18<00:35, 22.07it/s]2022-02-22 21:27:13,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▎                         | 439/1227 [00:18<00:38, 20.51it/s]2022-02-22 21:27:13,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▍                         | 444/1227 [00:18<00:31, 24.49it/s]2022-02-22 21:27:13,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:13,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▌                         | 447/1227 [00:18<00:33, 23.28it/s]2022-02-22 21:27:14,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▋                         | 450/1227 [00:18<00:34, 22.45it/s]2022-02-22 21:27:14,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▊                         | 453/1227 [00:19<00:33, 22.87it/s]2022-02-22 21:27:14,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▊                         | 456/1227 [00:19<00:33, 23.10it/s]2022-02-22 21:27:14,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▉                         | 459/1227 [00:19<00:40, 19.14it/s]2022-02-22 21:27:14,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|███████████████                         | 463/1227 [00:19<00:34, 22.14it/s]2022-02-22 21:27:14,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:14,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|███████████████▏                        | 466/1227 [00:19<00:34, 21.86it/s]2022-02-22 21:27:14,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,034 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|███████████████▎                        | 469/1227 [00:19<00:43, 17.50it/s]2022-02-22 21:27:15,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▍                        | 473/1227 [00:20<00:35, 21.53it/s]2022-02-22 21:27:15,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▌                        | 476/1227 [00:20<00:34, 21.49it/s]2022-02-22 21:27:15,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▌                        | 479/1227 [00:20<00:37, 20.20it/s]2022-02-22 21:27:15,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▊                        | 484/1227 [00:20<00:30, 24.60it/s]2022-02-22 21:27:15,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|███████████████▉                        | 487/1227 [00:20<00:34, 21.74it/s]2022-02-22 21:27:15,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:15,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|████████████████                        | 491/1227 [00:20<00:30, 24.42it/s]2022-02-22 21:27:16,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 40%|████████████████                        | 494/1227 [00:20<00:30, 24.05it/s]2022-02-22 21:27:16,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████▏                       | 497/1227 [00:21<00:37, 19.54it/s]2022-02-22 21:27:16,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████▎                       | 501/1227 [00:21<00:33, 21.76it/s]2022-02-22 21:27:16,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 41%|████████████████▍                       | 506/1227 [00:21<00:34, 21.12it/s]2022-02-22 21:27:16,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▋                       | 510/1227 [00:21<00:29, 23.96it/s]2022-02-22 21:27:16,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:16,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▊                       | 514/1227 [00:21<00:26, 27.03it/s]2022-02-22 21:27:17,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▊                       | 517/1227 [00:22<00:35, 20.03it/s]2022-02-22 21:27:17,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 42%|████████████████▉                       | 521/1227 [00:22<00:30, 23.25it/s]2022-02-22 21:27:17,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|█████████████████                       | 525/1227 [00:22<00:28, 24.69it/s]2022-02-22 21:27:17,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|█████████████████▏                      | 528/1227 [00:22<00:31, 21.94it/s]2022-02-22 21:27:17,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|█████████████████▍                      | 533/1227 [00:22<00:31, 22.26it/s]2022-02-22 21:27:17,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:17,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▍                      | 536/1227 [00:22<00:35, 19.59it/s]2022-02-22 21:27:18,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▌                      | 539/1227 [00:23<00:33, 20.34it/s]2022-02-22 21:27:18,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▋                      | 544/1227 [00:23<00:28, 23.73it/s]2022-02-22 21:27:18,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▊                      | 547/1227 [00:23<00:34, 19.77it/s]2022-02-22 21:27:18,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|██████████████████                      | 554/1227 [00:23<00:26, 25.02it/s]2022-02-22 21:27:18,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:18,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|██████████████████▏                     | 557/1227 [00:23<00:35, 18.66it/s]2022-02-22 21:27:19,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████▎                     | 562/1227 [00:24<00:29, 22.90it/s]2022-02-22 21:27:19,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████▍                     | 565/1227 [00:24<00:28, 23.14it/s]2022-02-22 21:27:19,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 46%|██████████████████▌                     | 568/1227 [00:24<00:29, 22.19it/s]2022-02-22 21:27:19,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,629 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,640 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▋                     | 573/1227 [00:24<00:25, 25.31it/s]2022-02-22 21:27:19,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▊                     | 576/1227 [00:24<00:29, 22.08it/s]2022-02-22 21:27:19,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:19,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▉                     | 579/1227 [00:24<00:32, 19.90it/s]2022-02-22 21:27:20,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▉                     | 582/1227 [00:24<00:29, 21.65it/s]2022-02-22 21:27:20,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|███████████████████                     | 586/1227 [00:25<00:26, 24.44it/s]2022-02-22 21:27:20,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|███████████████████▏                    | 589/1227 [00:25<00:31, 20.27it/s]2022-02-22 21:27:20,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 48%|███████████████████▎                    | 594/1227 [00:25<00:29, 21.32it/s]2022-02-22 21:27:20,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▍                    | 598/1227 [00:25<00:26, 23.37it/s]2022-02-22 21:27:20,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:20,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▌                    | 601/1227 [00:25<00:27, 22.88it/s]2022-02-22 21:27:21,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,185 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 49%|███████████████████▋                    | 604/1227 [00:25<00:29, 21.37it/s]2022-02-22 21:27:21,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▊                    | 608/1227 [00:26<00:27, 22.37it/s]2022-02-22 21:27:21,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|███████████████████▉                    | 611/1227 [00:26<00:26, 22.90it/s]2022-02-22 21:27:21,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|████████████████████                    | 614/1227 [00:26<00:26, 23.35it/s]2022-02-22 21:27:21,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 50%|████████████████████                    | 617/1227 [00:26<00:25, 23.69it/s]2022-02-22 21:27:21,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:21,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████▏                   | 620/1227 [00:26<00:32, 18.91it/s]2022-02-22 21:27:22,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████▎                   | 625/1227 [00:26<00:25, 23.73it/s]2022-02-22 21:27:22,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████▍                   | 628/1227 [00:27<00:26, 22.38it/s]2022-02-22 21:27:22,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████▌                   | 631/1227 [00:27<00:26, 22.13it/s]2022-02-22 21:27:22,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▋                   | 634/1227 [00:27<00:26, 22.13it/s]2022-02-22 21:27:22,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▊                   | 637/1227 [00:27<00:25, 23.36it/s]2022-02-22 21:27:22,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▊                   | 640/1227 [00:27<00:27, 21.48it/s]2022-02-22 21:27:22,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▉                   | 644/1227 [00:27<00:23, 24.77it/s]2022-02-22 21:27:22,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:22,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|█████████████████████                   | 647/1227 [00:27<00:30, 19.33it/s]2022-02-22 21:27:23,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|█████████████████████▏                  | 651/1227 [00:28<00:25, 23.02it/s]2022-02-22 21:27:23,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|█████████████████████▎                  | 655/1227 [00:28<00:25, 22.30it/s]2022-02-22 21:27:23,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▍                  | 658/1227 [00:28<00:28, 19.70it/s]2022-02-22 21:27:23,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▋                  | 664/1227 [00:28<00:22, 24.60it/s]2022-02-22 21:27:23,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:23,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▋                  | 667/1227 [00:28<00:28, 19.83it/s]2022-02-22 21:27:24,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▊                  | 671/1227 [00:28<00:24, 22.80it/s]2022-02-22 21:27:24,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|██████████████████████                  | 675/1227 [00:29<00:22, 24.20it/s]2022-02-22 21:27:24,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,410 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|██████████████████████                  | 678/1227 [00:29<00:32, 16.77it/s]2022-02-22 21:27:24,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████▎                 | 685/1227 [00:29<00:23, 23.12it/s]2022-02-22 21:27:24,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:24,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████▍                 | 688/1227 [00:29<00:27, 19.77it/s]2022-02-22 21:27:25,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▌                 | 694/1227 [00:29<00:21, 24.34it/s]2022-02-22 21:27:25,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▋                 | 697/1227 [00:30<00:24, 21.40it/s]2022-02-22 21:27:25,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▊                 | 700/1227 [00:30<00:28, 18.60it/s]2022-02-22 21:27:25,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,693 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|███████████████████████                 | 706/1227 [00:30<00:21, 24.18it/s]2022-02-22 21:27:25,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:25,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|███████████████████████                 | 709/1227 [00:30<00:27, 19.09it/s]2022-02-22 21:27:26,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|███████████████████████▎                | 716/1227 [00:31<00:22, 23.08it/s]2022-02-22 21:27:26,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▍                | 719/1227 [00:31<00:26, 18.88it/s]2022-02-22 21:27:26,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▋                | 726/1227 [00:31<00:24, 20.41it/s]2022-02-22 21:27:26,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:26,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▉                | 733/1227 [00:31<00:19, 24.85it/s]2022-02-22 21:27:27,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▉                | 736/1227 [00:31<00:21, 22.97it/s]2022-02-22 21:27:27,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|████████████████████████                | 739/1227 [00:32<00:24, 20.01it/s]2022-02-22 21:27:27,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|████████████████████████▎               | 746/1227 [00:32<00:19, 24.91it/s]2022-02-22 21:27:27,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|████████████████████████▍               | 749/1227 [00:32<00:19, 24.62it/s]2022-02-22 21:27:27,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:27,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|████████████████████████▌               | 752/1227 [00:32<00:22, 21.45it/s]2022-02-22 21:27:28,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▌               | 755/1227 [00:32<00:21, 21.79it/s]2022-02-22 21:27:28,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▊               | 760/1227 [00:33<00:19, 23.80it/s]2022-02-22 21:27:28,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▊               | 763/1227 [00:33<00:24, 19.25it/s]2022-02-22 21:27:28,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 62%|████████████████████████▉               | 766/1227 [00:33<00:22, 20.38it/s]2022-02-22 21:27:28,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|█████████████████████████               | 769/1227 [00:33<00:20, 22.12it/s]2022-02-22 21:27:28,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|█████████████████████████▏              | 772/1227 [00:33<00:24, 18.84it/s]2022-02-22 21:27:28,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:28,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 63%|█████████████████████████▎              | 778/1227 [00:33<00:19, 23.14it/s]2022-02-22 21:27:29,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████▍              | 781/1227 [00:34<00:19, 23.46it/s]2022-02-22 21:27:29,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████▌              | 784/1227 [00:34<00:24, 18.34it/s]2022-02-22 21:27:29,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,618 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████▋              | 789/1227 [00:34<00:18, 24.06it/s]2022-02-22 21:27:29,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▊              | 792/1227 [00:34<00:19, 22.76it/s]2022-02-22 21:27:29,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▉              | 795/1227 [00:34<00:21, 20.09it/s]2022-02-22 21:27:29,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:29,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|██████████████████████████              | 799/1227 [00:34<00:18, 22.67it/s]2022-02-22 21:27:30,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|██████████████████████████▏             | 802/1227 [00:35<00:20, 20.48it/s]2022-02-22 21:27:30,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|██████████████████████████▏             | 805/1227 [00:35<00:21, 19.51it/s]2022-02-22 21:27:30,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|██████████████████████████▎             | 809/1227 [00:35<00:18, 22.56it/s]2022-02-22 21:27:30,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|██████████████████████████▍             | 812/1227 [00:35<00:23, 17.52it/s]2022-02-22 21:27:30,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:30,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▋             | 820/1227 [00:35<00:15, 26.70it/s]2022-02-22 21:27:31,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▊             | 824/1227 [00:36<00:21, 18.49it/s]2022-02-22 21:27:31,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|███████████████████████████             | 832/1227 [00:36<00:16, 23.71it/s]2022-02-22 21:27:31,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|███████████████████████████▏            | 835/1227 [00:36<00:18, 21.35it/s]2022-02-22 21:27:31,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:31,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|███████████████████████████▎            | 838/1227 [00:36<00:17, 22.03it/s]2022-02-22 21:27:31,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████▍            | 842/1227 [00:36<00:17, 21.54it/s]2022-02-22 21:27:32,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████▌            | 845/1227 [00:37<00:17, 21.96it/s]2022-02-22 21:27:32,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████▋            | 848/1227 [00:37<00:17, 21.59it/s]2022-02-22 21:27:32,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████▊            | 852/1227 [00:37<00:15, 24.74it/s]2022-02-22 21:27:32,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▊            | 855/1227 [00:37<00:17, 20.75it/s]2022-02-22 21:27:32,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▉            | 858/1227 [00:37<00:16, 21.90it/s]2022-02-22 21:27:32,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:32,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|████████████████████████████            | 861/1227 [00:37<00:16, 22.44it/s]2022-02-22 21:27:33,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|████████████████████████████▏           | 864/1227 [00:38<00:21, 16.66it/s]2022-02-22 21:27:33,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|████████████████████████████▎           | 869/1227 [00:38<00:18, 19.47it/s]2022-02-22 21:27:33,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|████████████████████████████▍           | 873/1227 [00:38<00:16, 21.78it/s]2022-02-22 21:27:33,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|████████████████████████████▌           | 877/1227 [00:38<00:16, 21.34it/s]2022-02-22 21:27:33,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:33,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▋           | 881/1227 [00:38<00:14, 23.80it/s]2022-02-22 21:27:34,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▊           | 884/1227 [00:38<00:15, 22.30it/s]2022-02-22 21:27:34,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▉           | 887/1227 [00:39<00:16, 20.59it/s]2022-02-22 21:27:34,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|█████████████████████████████           | 890/1227 [00:39<00:15, 21.44it/s]2022-02-22 21:27:34,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|█████████████████████████████▏          | 894/1227 [00:39<00:14, 23.01it/s]2022-02-22 21:27:34,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|█████████████████████████████▏          | 897/1227 [00:39<00:13, 24.10it/s]2022-02-22 21:27:34,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|█████████████████████████████▎          | 900/1227 [00:39<00:15, 20.92it/s]2022-02-22 21:27:34,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:34,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|█████████████████████████████▍          | 903/1227 [00:39<00:14, 21.77it/s]2022-02-22 21:27:35,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|█████████████████████████████▌          | 907/1227 [00:39<00:12, 25.14it/s]2022-02-22 21:27:35,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|█████████████████████████████▋          | 910/1227 [00:40<00:17, 18.23it/s]2022-02-22 21:27:35,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▊          | 916/1227 [00:40<00:15, 20.24it/s]2022-02-22 21:27:35,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|█████████████████████████████▉          | 919/1227 [00:40<00:14, 21.50it/s]2022-02-22 21:27:35,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|██████████████████████████████          | 922/1227 [00:40<00:15, 20.09it/s]2022-02-22 21:27:35,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:35,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 75%|██████████████████████████████▏         | 926/1227 [00:40<00:13, 21.66it/s]2022-02-22 21:27:36,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|██████████████████████████████▎         | 929/1227 [00:41<00:14, 20.08it/s]2022-02-22 21:27:36,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|██████████████████████████████▍         | 935/1227 [00:41<00:11, 24.95it/s]2022-02-22 21:27:36,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 76%|██████████████████████████████▌         | 938/1227 [00:41<00:14, 20.42it/s]2022-02-22 21:27:36,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████▋         | 941/1227 [00:41<00:13, 21.49it/s]2022-02-22 21:27:36,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:36,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████▊         | 945/1227 [00:41<00:14, 19.52it/s]2022-02-22 21:27:37,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████▉         | 948/1227 [00:41<00:13, 20.36it/s]2022-02-22 21:27:37,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,272 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|███████████████████████████████         | 954/1227 [00:42<00:10, 25.41it/s]2022-02-22 21:27:37,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|███████████████████████████████▏        | 957/1227 [00:42<00:13, 20.51it/s]2022-02-22 21:27:37,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|███████████████████████████████▎        | 960/1227 [00:42<00:12, 21.51it/s]2022-02-22 21:27:37,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|███████████████████████████████▍        | 965/1227 [00:42<00:12, 21.12it/s]2022-02-22 21:27:37,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:37,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|███████████████████████████████▌        | 968/1227 [00:42<00:11, 22.08it/s]2022-02-22 21:27:38,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 79%|███████████████████████████████▋        | 972/1227 [00:42<00:12, 20.83it/s]2022-02-22 21:27:38,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▊        | 976/1227 [00:43<00:10, 23.37it/s]2022-02-22 21:27:38,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|███████████████████████████████▉        | 979/1227 [00:43<00:10, 23.73it/s]2022-02-22 21:27:38,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|████████████████████████████████        | 982/1227 [00:43<00:09, 24.71it/s]2022-02-22 21:27:38,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 80%|████████████████████████████████        | 985/1227 [00:43<00:11, 20.64it/s]2022-02-22 21:27:38,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|████████████████████████████████▏       | 989/1227 [00:43<00:10, 23.41it/s]2022-02-22 21:27:38,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:38,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|████████████████████████████████▍       | 994/1227 [00:43<00:10, 21.85it/s]2022-02-22 21:27:39,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|████████████████████████████████▌       | 997/1227 [00:44<00:10, 21.09it/s]2022-02-22 21:27:39,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▊       | 1000/1227 [00:44<00:11, 19.86it/s]2022-02-22 21:27:39,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 1005/1227 [00:44<00:09, 22.21it/s]2022-02-22 21:27:39,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 1010/1227 [00:44<00:09, 23.78it/s]2022-02-22 21:27:39,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,896 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:39,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▏      | 1014/1227 [00:44<00:08, 23.77it/s]2022-02-22 21:27:40,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▎      | 1017/1227 [00:45<00:10, 20.88it/s]2022-02-22 21:27:40,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▍      | 1020/1227 [00:45<00:09, 22.03it/s]2022-02-22 21:27:40,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,518 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|████████████████████████████████▌      | 1024/1227 [00:45<00:09, 20.41it/s]2022-02-22 21:27:40,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,749 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▋      | 1030/1227 [00:45<00:08, 24.62it/s]2022-02-22 21:27:40,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:40,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 84%|████████████████████████████████▊      | 1034/1227 [00:45<00:08, 23.57it/s]2022-02-22 21:27:40,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|████████████████████████████████▉      | 1037/1227 [00:45<00:09, 20.21it/s]2022-02-22 21:27:41,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████      | 1042/1227 [00:46<00:07, 23.76it/s]2022-02-22 21:27:41,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▏     | 1045/1227 [00:46<00:07, 23.17it/s]2022-02-22 21:27:41,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 85%|█████████████████████████████████▎     | 1048/1227 [00:46<00:09, 18.00it/s]2022-02-22 21:27:41,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▌     | 1055/1227 [00:46<00:07, 23.35it/s]2022-02-22 21:27:41,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:41,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▋     | 1058/1227 [00:46<00:07, 23.26it/s]2022-02-22 21:27:42,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|█████████████████████████████████▋     | 1061/1227 [00:46<00:07, 20.99it/s]2022-02-22 21:27:42,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▉     | 1066/1227 [00:47<00:07, 20.14it/s]2022-02-22 21:27:42,528 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 87%|█████████████████████████████████▉     | 1069/1227 [00:47<00:07, 20.48it/s]2022-02-22 21:27:42,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▏    | 1075/1227 [00:47<00:06, 25.29it/s]2022-02-22 21:27:42,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:42,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▎    | 1078/1227 [00:47<00:06, 24.44it/s]2022-02-22 21:27:42,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▎    | 1081/1227 [00:47<00:06, 21.31it/s]2022-02-22 21:27:43,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 1085/1227 [00:48<00:06, 21.40it/s]2022-02-22 21:27:43,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▌    | 1088/1227 [00:48<00:06, 21.97it/s]2022-02-22 21:27:43,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 1091/1227 [00:48<00:06, 20.18it/s]2022-02-22 21:27:43,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 1094/1227 [00:48<00:06, 19.08it/s]2022-02-22 21:27:43,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:43,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 1097/1227 [00:48<00:07, 17.21it/s]2022-02-22 21:27:44,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████    | 1103/1227 [00:48<00:05, 23.88it/s]2022-02-22 21:27:44,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 1106/1227 [00:49<00:05, 22.86it/s]2022-02-22 21:27:44,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,458 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▎   | 1110/1227 [00:49<00:05, 23.26it/s]2022-02-22 21:27:44,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 1113/1227 [00:49<00:05, 22.51it/s]2022-02-22 21:27:44,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▍   | 1116/1227 [00:49<00:05, 19.96it/s]2022-02-22 21:27:44,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▋   | 1121/1227 [00:49<00:04, 23.83it/s]2022-02-22 21:27:44,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:44,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▋   | 1124/1227 [00:49<00:05, 19.38it/s]2022-02-22 21:27:45,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 1129/1227 [00:50<00:03, 25.03it/s]2022-02-22 21:27:45,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,412 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 1132/1227 [00:50<00:04, 19.23it/s]2022-02-22 21:27:45,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████   | 1135/1227 [00:50<00:05, 17.29it/s]2022-02-22 21:27:45,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,864 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:45,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,045 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▎  | 1142/1227 [00:50<00:04, 19.70it/s]2022-02-22 21:27:46,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▍  | 1148/1227 [00:50<00:03, 25.83it/s]2022-02-22 21:27:46,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▌  | 1152/1227 [00:51<00:03, 19.48it/s]2022-02-22 21:27:46,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,671 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 94%|████████████████████████████████████▊  | 1159/1227 [00:51<00:02, 25.83it/s]2022-02-22 21:27:46,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:46,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|████████████████████████████████████▉  | 1163/1227 [00:51<00:02, 21.69it/s]2022-02-22 21:27:47,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████  | 1166/1227 [00:51<00:03, 19.77it/s]2022-02-22 21:27:47,157 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,407 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▎ | 1172/1227 [00:52<00:02, 20.40it/s]2022-02-22 21:27:47,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▍ | 1178/1227 [00:52<00:02, 24.21it/s]2022-02-22 21:27:47,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,737 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▌ | 1182/1227 [00:52<00:01, 22.91it/s]2022-02-22 21:27:47,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▋ | 1185/1227 [00:52<00:01, 23.40it/s]2022-02-22 21:27:47,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:47,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▊ | 1188/1227 [00:52<00:01, 21.40it/s]2022-02-22 21:27:48,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 97%|█████████████████████████████████████▉ | 1192/1227 [00:53<00:01, 19.55it/s]2022-02-22 21:27:48,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████ | 1197/1227 [00:53<00:01, 23.53it/s]2022-02-22 21:27:48,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,696 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▏| 1200/1227 [00:53<00:01, 19.76it/s]2022-02-22 21:27:48,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,887 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:48,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▎| 1207/1227 [00:53<00:01, 19.90it/s]2022-02-22 21:27:49,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▍| 1210/1227 [00:53<00:00, 20.51it/s]2022-02-22 21:27:49,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▋| 1217/1227 [00:54<00:00, 21.66it/s]2022-02-22 21:27:49,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 99%|██████████████████████████████████████▊| 1220/1227 [00:54<00:00, 22.09it/s]2022-02-22 21:27:49,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-02-22 21:27:49,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|███████████████████████████████████████| 1227/1227 [00:54<00:00, 22.48it/s]
2022-02-22 21:27:49,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

100%|██████████████████████████████████████| 1227/1227 [00:05<00:00, 241.41it/s]
In [23]:
#Tshirt: net aperture
Flux3, Flux_error3 = phot3.get_tSeries() #The flux data and flux data errors
normalized_flux_tshirt3 = Flux3['Flux 0']/Flux3['Flux 0'][0] #normalized net aperture sum
std_tshirt3 = np.std(normalized_flux_tshirt3[0:20]) #calculated standard deviation
relative_error_tshirt3 = (Flux_error3['Error 0']/Flux3['Flux 0'])

#MAD: 
deviation = normalized_flux_tshirt3[0:seg01_len] - np.median(normalized_flux_tshirt3[0:seg01_len])
mad = np.median(np.abs(deviation))*1.48

print(style.BOLD+"Tshirt Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad*10**6))
print(style.BOLD+"Tshirt Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_tshirt3*10**6))
print(style.BOLD+"Median Relative Errors Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_tshirt3)*10**6))

plt.errorbar(Flux3['Time (JD)'],normalized_flux_tshirt3,yerr=relative_error_tshirt3,fmt='b.',markersize=4,elinewidth=1,ecolor='silver')
Tshirt Calculated Net Aperture Sum MAD (ppm): 1234.1020594840945
Tshirt Calculated Net Aperture Sum std (ppm): 1257.2691610367633
Median Relative Errors Net Aperture Sum (ppm): 1305.0783566299142
Out[23]:
<ErrorbarContainer object of 3 artists>

$\textbf{Light Curve Modeling}$¶

Modeling the best returned light curve from the photometry steps above. Here the best result is the 50-60-70 Radii values.

Planet Parameters:

  • per: 265062.4421 ## seconds, Triaud et al. 2015
  • a: 12.63 ## a/r*, Triaud et al. 2015
  • inc: 89.02 ## inclination, Triaud et al. 2015
  • ecc: 0. ## eccentricity, rounded to 0
  • w: 90. ## longitude of periastron
  • limb_model: "nonlinear" ## type of limb darkening model
  • ld_u: [0.624,-0.198,0.059,-0.011] ## limb darkening parameters, ExoCTK 4 param law
In [37]:
def transit_model(x, rp, A, t0):
    '''
    Models transit light curve using Python package `batman` based on initial parameters stored in params_transit.
    
    Parameters
    ----------
    
    x: array
        Time in Julian days  
    rp: int
        Planet-to-star radius ratio
    A: int
        Baseline Normalization Factor
    t0: int
        Time of inferior conjunction
    '''

    params_transit = batman.TransitParams()                   #Object to store transit parameters
    
    params_transit.t0 = t0                                                       #time of inferior conjunction
    params_transit.per = 3.0678523391204                                                #orbital period
    params_transit.a = 12.63                                                      #semi-major axis (in units of stellar radii)
    params_transit.inc = 89.02                                                    #orbital inclination (in degrees)
    params_transit.ecc = 0                                                       #eccentricity
    params_transit.w = 90.0                                                      #longitude of periastron (in degrees)
    params_transit.limb_dark = "nonlinear"                                       #limb darkening model
    params_transit.u =  [0.624,-0.198,0.059,-0.011]                                 #limb darkening coefficients [u1, u2, u3, u4]
    
    params_transit.rp = rp                                    #Planet-to-star radius ratio - Will depend on function input
    
    #Modifying the time: Julian Date(x) - Initial Julian Date(x0) 
    x0 = np.min(x)
    m = batman.TransitModel(params_transit, x-x0)                #Initializes model
    
    flux = m.light_curve(params_transit)*A        #Calculate the light curve
    return flux
In [38]:
#Simple curve_fit model to determine the best planet-to-star radius ratio. 
popt, pcov = curve_fit(transit_model,Flux['Time (JD)'],normalized_flux_tshirt,sigma=relative_error_tshirt,p0=[0.08,1,0.124])

print("Optimized Planet-to-star radius ratio = " + str(popt[0]))
print("Optimized Baseline Normalization Factor = " + str(popt[1]))
print("Optimized Time of Inferior Conjunction = " + str(popt[2]))
Optimized Planet-to-star radius ratio = 0.17103017592390596
Optimized Baseline Normalization Factor = 1.0063350224744882
Optimized Time of Inferior Conjunction = 0.1391401074354491
In [39]:
#plot the modeled light curves
modeled_flux =transit_model(Flux['Time (JD)'], *popt)
t = Flux['Time (JD)'] 

plt.plot(t,modeled_flux, color='red')
plt.plot(t,normalized_flux_tshirt,'.',alpha=0.2)
plt.title("WASP80b Light Curve Model")
plt.xlabel("Time (JD)")
plt.ylabel("Normalized Flux")
Out[39]:
Text(0, 0.5, 'Normalized Flux')
In [8]:
phot = phot_pipeline.phot(paramFile='/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/WASP80b_WLP4_NRCA3_phot_pipeline.yaml') #create a photometric object
alteredParam = deepcopy(phot.param)
alteredParam['srcGeometry']='Circular'
alteredParam['bkgGeometry'] = 'CircularAnnulus' #Changing the outer radius
alteredParam['backEnd'] = 50 #Changing the outer radius
alteredParam['apRadius'] = 30 #Changing the source radius
alteredParam['backStart'] = 30 #Changing the inner radius
alteredParam['bkgMethod'] ='mean'
alteredParam['procFiles'] ='/fenrirdata1/kg_data/pipeline_output/WASP80b_WLP4/splintegrate/jw01185002001_01101_00001-seg001*.fits'

alteredParam['doCentering'] = True
alteredParam['srcNameShort'] = 'WASP80b_phot2' #provide a new name for centroid realignment

#Assignimg a object new phot2
phot2 = phot_pipeline.phot(directParam=alteredParam) #create new photometric object
#Assignimg a object phot
phot2.showStarChoices(showAps=True,showPlot=True,apColor='red',backColor='pink', figSize=(30,20),xLim=[900,1200]) #Plot the source and background subtraction area
In [12]:
obj = analysis.aperture_size_sweep(phot2,stepSize=2,srcRange=[5, 10],backRange=[5, 10])
2021-11-23 15:19:55,649 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:528: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  yStamp_proposed = np.array(onePos[1] + np.array([-1,1]) * boxsize,dtype=np.int)

2021-11-23 15:19:55,651 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:529: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  xStamp_proposed = np.array(onePos[0] + np.array([-1,1]) * boxsize,dtype=np.int)

2021-11-23 15:19:55,824 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:528: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  yStamp_proposed = np.array(onePos[1] + np.array([-1,1]) * boxsize,dtype=np.int)

2021-11-23 15:19:55,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:529: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  xStamp_proposed = np.array(onePos[0] + np.array([-1,1]) * boxsize,dtype=np.int)

src: 5, back st: 5, back end: 7
100%|████████████████████████████████████████| 212/212 [00:00<00:00, 266.30it/s]
2021-11-23 15:19:57,068 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2021-11-23 15:19:57,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1527: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 5, back end: 9
100%|████████████████████████████████████████| 212/212 [00:00<00:00, 267.58it/s]
2021-11-23 15:19:58,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2021-11-23 15:19:58,247 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1527: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 7, back end: 9
100%|████████████████████████████████████████| 212/212 [00:00<00:00, 280.21it/s]
2021-11-23 15:19:59,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2021-11-23 15:19:59,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1527: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 7, back st: 7, back end: 9
100%|████████████████████████████████████████| 212/212 [00:00<00:00, 277.87it/s]
2021-11-23 15:20:00,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2021-11-23 15:20:00,475 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1527: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

Writing table to /home/kglidic/tshirt_data/tser_data/phot_aperture_optimization/aperture_opt_WASP80b_phot2_aperture_sizing_NRCA3_WASP80b_2022_09_30_src_5_10_step_2_back_5_10_step_2.csv
Min Stdev results:
src back_st back_end  stdev  theo_err mad_arr
--- ------- -------- ------- -------- -------
7.0     7.0      9.0 -2.0906  -1.3605 -0.8672
In [14]:
analysis.plot_apsizes('/home/kglidic/tshirt_data/tser_data/phot_aperture_optimization/aperture_opt_WASP80b_phot2_aperture_sizing_NRCA3_WASP80b_2022_09_30_src_5_10_step_2_back_5_10_step_2.csv')
In [ ]: